RetroZilla/layout/html/tests/table/other/cellspacing.html
2015-10-20 23:03:22 -04:00

35 lines
795 B
HTML

<HTML><BODY>
This table should have cell spacing of 2px
<table border>
<TR><TD style="border: 3px inset black;">AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell spacing of 5px
<table border cellspacing=5>
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell spacingX of 5px, spacingY of 10px
<table border style="border-spacing: 5px 10px;">
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell spacingX of 5px, spacingY of 10px
<table border cellspacing=0 style="border-spacing: 5px 10px;">
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
</body></html>