<html>
<body>
<p><b>Note:</b> The rules attribute is not supported in HTML5. Use CSS instead.</p>
<p>Table with rules="rows":</p>
<table rules="rows">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<p>Table with rules="cols":</p>
<table rules="cols">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<p>Table with rules="all":</p>
<table rules="all">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
</body>
<!-- Mirrored from www.w3schools.com/tags/tryit.asp?filename=tryhtml_table_rules by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:00 GMT -->
</html>