blob: 73620462c5607016167119cc38c96c7fea783beb (
plain)
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
51
52
53
54
55
56
57
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>test of border-image</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">
table { margin: 0; padding: 0; border-spacing: 0; empty-cells: show; }
td { padding: 0; }
</style>
</head>
<body>
<table>
<col style="width: 3px">
<col style="width: 1px">
<col style="width: 1px">
<col style="width: 1px">
<col style="width: 1px">
<col style="width: 3px">
<tr style="height: 1px">
<td style="background: #ff0000"></td>
<td style="background: #00ff00"></td>
<td style="background: #0000ff"></td>
<td style="background: #00ff00"></td>
<td style="background: #0000ff"></td>
<td style="background: #ff0000"></td>
</tr>
<tr style="height: 1px">
<td style="background: #00ff00"></td>
<td style="background: #ff0000"></td>
<td style="background: #ff0000"></td>
<td style="background: #ff0000"></td>
<td style="background: #ff0000"></td>
<td style="background: #0000ff"></td>
</tr>
<tr style="height: 1px">
<td style="background: #0000ff"></td>
<td style="background: #ff0000"></td>
<td style="background: #ff0000"></td>
<td style="background: #ff0000"></td>
<td style="background: #ff0000"></td>
<td style="background: #00ff00"></td>
</tr>
<tr style="height: 1px">
<td style="background: #ff0000"></td>
<td style="background: #00ff00"></td>
<td style="background: #0000ff"></td>
<td style="background: #00ff00"></td>
<td style="background: #0000ff"></td>
<td style="background: #ff0000"></td>
</tr>
</table>
</body>
</html>
|