bc_borderoffset1.html (555B)
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 div {position:absolute; border:green 4px solid} 11 12 </style> 13 </head> 14 15 <body> 16 <div> 17 <table style="border-collapse:collapse;"> 18 <tr><td style="border:solid 4px orange; height:30px">cell 1</td></tr> 19 </table> 20 </div> 21 </body> 22 </html>