mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|
||
|
|