Example
Display only the borders between the rows:
<table rules="rows">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
Try it Yourself »
Definition and Usage
The <table> rules attribute is not supported in HTML5. Use CSS instead.
The rules attribute specifies which parts of the inside borders that should be visible.
For practical reasons, it may be better to not specify any rules, and use CSS instead.
Browser Support
The numbers in the table specify the first browser version that fully supports the attribute.
Attribute | |||||
---|---|---|---|---|---|
rules | Yes | 9.0 | Yes | Yes | Yes |
Note: Chrome and Safari displays this attribute incorrectly: They add the affected outside borders in addition to the inside borders.
Syntax
<table rules="value">
Attribute Values
Value | Description |
---|---|
none | No lines |
groups | Lines between row groups and column groups |
rows | Lines between rows |
cols | Lines between columns |
all | Lines between rows and columns |