bc_borderoffset1.html 555 B

1234567891011121314151617181920212223
  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. </style>
  12. </head>
  13. <body>
  14. <div>
  15. <table style="border-collapse:collapse;">
  16. <tr><td style="border:solid 4px orange; height:30px">cell 1</td></tr>
  17. </table>
  18. </div>
  19. </body>
  20. </html>