TOC PREV NEXT INDEX

Put your logo here!


rules


rules specifies which cell borders to render in the table.

Syntax

table.rules = rules 
rules = table.rules 

Parameters

rules is a string with one of the following values:

none
no rules
groups
lines between groups only
rows
lines between rows
cols
lines between cols
all
lines between all cells

Example

t = document.getElementById("mytable"); 
t.rules = "all"; // turn on all the internal borders 

Notes

None.

Specification

rules


mozilla DOM project | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX