How to remove td border with html? -
html
<table border="1"> <tr> <td>one</td> <td>two</td> </tr> <tr> <td>one</td> <td>two</td> </tr> </table>
this output borders this
+---+---+ | | | +---+---+ | | | +---+---+
but display border in table not td this
+--------+ | | | | | | +--------+
how can html markup. (no css / no inline styles)
in cases need remove td borders , td border display this:
+---+---+ | | | +---+ | | | | +---+---+
simple solution end keep table border , insert table in outer table.
<table border="1"> <tr> <td> <table border="0"> <tr> <td>one</td> <td>two</td> </tr> <tr> <td>one</td> <td>two</td> </tr> </table> </td> </tr> </table>
Comments
Post a Comment