width: ***; height: ***;

ブラウザ
  • IE
  • Cr
  • Sf
  • Fx
  • O
プロパティ

width は横幅を、height は高さを指定するプロパティです。

このプロパティをtable要素に対して設定すると、表の大きさを指定することができます。


table {
width: 300px;
height: 200px;
}

プロパティ名 説明
width 数値+単位(px 等)またはパーセント 表の横幅を指定 (初期値は auto
height 数値+単位(px 等)またはパーセント 表の高さを指定 (初期値は auto

使用例


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>文書のタイトル</title>

<style type="text/css">

table {
width: 250px;
height: 150px;
border: 2px #2b2b2b solid;
}

td, th {
border: 2px #2b2b2b solid;
}

</style>

</head>
<body>

<table>
<tr>
<th>見出し1</th>
<th>見出し2</th>
</tr>
<tr>
<td>データ1</td>
<td>データ2</td>
</tr>
</table>

</body>
</html>

表示例
見出し1 見出し2
データ1 データ2