LoginSignup
9
8

More than 5 years have passed since last update.

cssによるtableスタイルについて

Posted at

cssによるtableスタイルの基本

  • 親要素に display: table;
  • 要素に display: table-cell;

列幅について

セルにあたる要素に幅を指定しても、そのままだと反映されない(中の要素に依存される)
その場合は、table-layoutプロパティにて制御する。
※ここ結構重要!

  • table-layout: auto;
    列幅は自動設定される(初期値)

  • table-layout: fixed;
    列幅が固定される
    → css等のwidthプロパティが反映

9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8