Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLTableElement.cellSpacing

概要

cellSpacing は、テーブルのセル間の幅の取得 / 設定に用います。

構文

HTMLTableElement.cellSpacing =spacing; //設定
spacing =HTMLTableElement.cellSpacing; //取得
  • 変数 spacing は "10" の様なピクセル値(絶対値、単位無し)、または "10%" の様な相対値となります。

// セル間の間隔を 10 ピクセルに設定する例

var t = document.getElementById('TableA');
t.cellSpacing = "10";

仕様書

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, jsx, ethertank
 最終更新者: jsx,