mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
35 lines
795 B
HTML
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>
|
||
|
|