|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <title>CSS 2.1 Test Suite: border collapse</title> |
|
5 <link rel="author" title="Bernd Mielke" href="mailto:bmlk@gmx.de" /> |
|
6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#collapsing-borders" /> |
|
7 <meta name="flags" content="" /> |
|
8 <style> |
|
9 td {width: 100px; text-align:center} |
|
10 caption {border:solid 4px green} |
|
11 |
|
12 </style> |
|
13 </head> |
|
14 |
|
15 <body> |
|
16 <!-- by default, td has padding of 1px --> |
|
17 <table style="border-collapse:collapse;"><caption>caption</caption> |
|
18 <tr><td style="border:solid 4px orange; height:30px">cell 1</td></tr> |
|
19 </table> |
|
20 |
|
21 </body> |
|
22 </html> |