--- title: HTMLTableElement.rules slug: Web/API/HTMLTableElement/rules tags: - DOM - Gecko - Gecko DOM Reference translation_of: Web/API/HTMLTableElement/rules ---
rules
は、テーブル内のボーダーの表示位置の設定 / 取得に用います。
HTMLTableElement.rules =rules; //設定 rules = HTMLTableElement.rules; //取得
指定値及び戻り値は、次の文字列の内の一つとなります。
none
groups
rows
cols
all
// テーブルの全てのボーダーを表示する例 var t = document.getElementById("TableID"); // table 要素への参照を変数に代入 t.rules = "all"; // テーブルの rules プロパティに "all" を設定