“width”属性について 代替方法 指定できる値 サンプルコード # “width”属性について “width”属性はセルの横幅を指定します。 # 代替方法 HTML5でこの属性は廃止されているので使用するべきではありません。 スタイルシートの“width”プロパティで指定します。 # 指定できる値 属性値 説明 正の整数 横幅のピクセル数 正の整数% 横幅の表示領域に対する割合 # サンプルコード <table border="1"> <tr> <th width="200" height="80">品名</th> <th width="100" height="80">価格</th> </tr> <tr> <td>バナナ</td> <td>200</td> </tr> <tr> <td>マンゴスチン</td> <td>400</td> </tr> </table>