-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
50 lines (37 loc) · 1.21 KB
/
Copy pathtest.html
File metadata and controls
50 lines (37 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<style>
table, tr, td{
border:1px solid blue;
/* border-collapse: collapse; */
}
</style>
</head>
<body>
<table style="width:300px;">
<tr>
<td style="background-Color:yellow;">a</td>
<td style="background-Color:red;">b</td>
<td style="background-Color:blue;">c</td>
</tr>
<tr>
<td style="background-Color:navy;">d</td>
<td style="background-Color:green;">e</td>
<td style="background-Color:#ddd;" rowspan="2">f</td>
</tr>
<tr>
<td style="background-Color:black;" colspan="2">g</td>
</tr>
</table>
<input type="submit">
<button value="Click Me" disabled>
<select name="a">
</select>
<button>
g
</button>
<button value="Click Me" disabled>12d</button>
<button value="Click Me" disabled>1d2</button>
</body>
</html>