2016-05-03 115 views
1

任何想法如何在使用border-bottom時避免此問題:2px虛線黑色;在桌子上? Any ideas how to avoid this problem, guys?避免td/tr元素中的虛線邊框塌陷

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> 

我使用引導3表。 這是一個已知的問題還是鏜孔定義有問題?

+2

請你分享你的表的代碼? –

回答