使用border-bottom时如何避免此问题的任何想法:2px点缀黑色;在表格?
CSS:
.plain-list tr td {
color: #eee;
border-bottom: 2px dotted #eee !important;
font-size: 20px !important;
border-top: none;
}
HTML
<table сlass="table table-striped plain-list desktop-table">
<tbody>
<tr>
<th><strong>test</strong></th>
<th><strong></strong>test</th>
<th><strong></strong>test</th>
</tr>
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
</tbody>
</table>
我使用bootstrap 3表。 这是一些已知问题还是钻孔定义有问题?
答案 0 :(得分:2)