WEB MEMO 2021/01/21 CSS テーブルの列幅を均等にする KOSAERU | WEB MEMO | CSS, テーブル facebook Twitter LINE CSSでテーブルのセルの幅を均等にする方法。 table-layout:fixed; を利用する。 table { width: 100%; table-layout: fixed; }1234table {width: 100%;table-layout: fixed;}