前提・実現したいこと
tableタグのtrタグにborder-bottom: dotted
を設定しています。
下記はサンプルです。
JS Bin
thタグとtdタグの境目でドットが重なっているので、thの左端からtdの右端までドットが等間隔になるようにHTMLとCSSを修正したいです。
発生している問題・エラーメッセージ
thとtdの境目でドットが重なっています。
該当のソースコード
html
1<body> 2 <table> 3 <tr> 4 <th>名前</th> 5 <td>太郎</td> 6 </tr> 7 </table> 8</body>
css
1table { 2 width: 100%; 3 table-layout: fixed; 4 border-collapse: collapse; 5 padding: 1em; 6} 7 8tr { 9 border-bottom: dotted 3px; 10} 11 12th { 13 width: 5em; 14}
試したこと
trにborder-bottom
の代わりにthとtdそれぞれに設定してみましたが、結果は変わりませんでした。
回答3件
あなたの回答
tips
プレビュー