テーブルのデザインについて、解決出来ない問題があり、アドバイス頂きたく質問させて貰いました。
詳細なコードは以下になります。
html
1 2 3<div class="table-content"> 4<table> 5<thead> 6 <tr> 7 <th>テスト1</th> 8 <th>テスト2</th> 9 </tr> 10</thead> 11<tbody> 12<tr> 13<td>テキスト</td> 14<td>テキスト</td> 15</tr> 16<tr> 17<td>テキスト</td> 18<td>テキスト</td> 19</tr> 20 21</tbody> 22 23</table> 24</div>
css
1 .table-content{ 2 background-color:green; 3 height:140px; 4 width:180px; 5 } 6 7table{ 8 border-collapse:collapse; 9 10} 11thead{ 12 background-color:aqua; 13} 14tbody{ 15 background-color:blue; 16} 17 18th { 19 padding: 1em; 20 background-color: aqua; 21 } 22 23 th:first-child { 24 border-radius: 10px 0 0 0; 25 } 26 27 th:last-child { 28 border-radius: 0 10px 0 0; 29 } 30
こちら現状、以下のようなスタイルになっているのですが、上の両端に緑の枠がborder-radius
を設定した分だけはみ出てしまっているのですが、こちらを改善する方法がありましたら教えて頂きたいです
![]
こちらのコードですが、jsfiddleにて、アップロードしており再現確認可能な状態となっています。
どなたか、ご助言いただけましたら幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/12 11:13