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.cellPadding

概要

cellPadding は、テーブルの各セル全ての余白の設定 / 取得に用います。

構文

HTMLTableElement.cellPadding = padding;
padding =HTMLTableElement.cellPadding;
  • 変数 padding は "10" の様な絶対値(ピクセル幅、単位無し)、或いは "100%" の様な相対値となります。

// テーブルのセルの余白を 10px に設定する例

var t = document.getElementById("TableA"); // 対象とする table 要素への参照を代入
t.cellPadding = "10"; // 設定

仕様書

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

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