CSS

テーブルのセル横幅を文字数に合わせて可変にする

More than 1 year has passed since last update.

セルのwidthを狭くしておいて
nowrapにすればいけた。

table {
    width: 100%;
}
table th {
    white-space: nowrap;
    width: 100px;
}