table-layout: fixed;とcolgroupを使っても最初以外自動的に幅を調節したい
Html
1<table> 2 <colgroup> 3 <col span="1" style="width: 1000px"> 4 <col span="2"> 5 <col span="2"> 6 </colgroup> 7 <tr> 8 <td> </td> 9 <th scope="col">Batman</th> 10 <th scope="col">Robin</th> 11 <th scope="col">The Flash</th> 12 <th scope="col">Kid Flash</th> 13 </tr> 14 <tr> 15 <th scope="row">Skill</th> 16 <td>Smarts</td> 17 <td>Dex, acrobat</td> 18 <td>Super speed</td> 19 <td>Super speed</td> 20 </tr> 21</table> 22
CSS
1table { 2 width: fit-content; 3 table-layout: fixed; 4 border-collapse: collapse; 5 border: 2px solid rgb(100, 100, 100); 6} 7 8 9 10td, 11th { 12 border: 1px solid rgb(100, 100, 100); 13 padding: 10px 10px; 14} 15
このようにやるとテーブルがずれてしまいます。
最初のコラムだけ100pxにしてあとは自動調節するにはどうすればいいですか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/15 16:24
退会済みユーザー
2019/12/15 22:05
2019/12/16 01:30
退会済みユーザー
2019/12/16 01:33