Type: | border-width? border-style? border-color? |
---|---|
Inherited: | no |
Used By: | table |
See: | border cellmargin cellpadding |
The cellborder set of attributes can be used on a table element to set the default border value for each of it's td elements. It functions exactly the same way as border.
These two tables will appear identical
<table cellborder="20"> <tr> <td>test</td> </tr> </table> <table> <tr> <td border="20">test</td> </tr> </table>