0
我正在使用border-right
向我的標題單元格添加一些填充。 (我使用border-right
而不是padding
的原因是因爲實際上我想要移動背景上的圖像)。表格邊框寬度和顏色的相互影響
table {
border: solid 2px red;
}
th {
background-color: #ccc;
border-right: 25px solid transparent;
border-bottom: 1px solid black;
}
th:after {
content: "x";
color: red;
}
td:before {
content: "cell"
}
<table>
<thead>
<tr>
<th> foo</th>
<th> bar </th>
<th> bizz</th>
<tr>
</thead>
<tr>
<td/><td/><td/>
</tr>
</table>
你可以看到還有的border-bottom
和border-right
之間有趣的交互。有沒有辦法來解決這個問題?
對於顏色,你可以使用rgba(255,255,255,2)來獲得背景白色,但它仍然會將下邊框連接到右邊框(下邊框線),填充是解決方案! – Ishu