2022.07.23

tableのセルを均等に表示する

tableのセルの横幅を均等にしたい場合、tableタグに以下のCSSを設定する。

table{
  table-layout: fixed;
  width: 100%;
}

ポイントはwidthも一緒に設定をすること!

デモページ

Related Posts関連記事