我正在嘗試使表格的邊框看起來像附加的圖片,但它沒有實現邊框顏色或任何東西。這可能與Bootstrap的'表'類有關。更改tr和td的邊框顏色
這裏是我的代碼:
HTML:
<table class="table">
<tbody>
<tr>
<td>
<span class="glyphicon glyphicon-calendar" id="left-info" > 17 SEPTEMBER</span>
</td>
</tr>
</tbody>
</table>
CSS:
table{
padding: 10px !important;
background-color: #575757 !important;
}
tr{
background-color: #575757;
border-top: 10px!important;
border-top-color: #383D3D !important;
}
td{
border-left: 3px !important;
border-left-color: #383D3D !important;
}