table attributes

frame Attribute
void, above, below, hsides, lhs, rhs vsides, box, border
snippet

<html>
<head></head>
<body>
<table border="2" frame="below">
<tr><td>Row1, Column1</td><td>Row1, Column2</td></tr>
<tr><td>Row2, Column1</td><td>Row2, Column2</td></tr>
</table>
</body>
</html>

Output
Row1, Column1Row1, Column2
Row2, Column1Row2, Column2


rules Attribute
none, groups, rows, cols, all

snippet
<html>
<head></head>
<body>
<table border rules="rows">
<tr><td>Row1, Column1</td><td>Row1, Column2</td></tr>
<tr><td>Row2, Column1</td><td>Row2, Column2</td></tr>
</table>
</body>
</html>

Output
Row1, Column1Row1, Column2
Row2, Column1Row2, Column2
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +