2024-01-29から1日間の記事一覧

CSSでテーブルの列幅を指定する方法

こんにちは! 今回はCSSでテーブルの列幅を指定する方法をまとめます。 やりたいこと テーブルの列ごとに幅を固定したい 方法 table { table-layout: fixed; width: 100%; } th:nth-child(1) { width: 30%; } th:nth-child(2) { width: 70%; } tableにtable-…