如何更改类table-condensed
的引导程序表中水平线的颜色?
答案 0 :(得分:5)
他们对border-bottom
和td
- Reference使用th
属性,因此您可以使用的选择器是
.table.table-condensed tr th {
border-bottom: 2px solid #f00; /* Change the color you want to set */
}
.table.table-condensed tr td {
border-bottom: 1px solid #f00; /* Change the color you want to set */
}
这将适用于所有表格,因此如果您指定一个唯一的class
或id
并相应更改选择器会更好。
如果需要,您还可以自定义Bootstrap here。
答案 1 :(得分:3)
执行以下操作 - 假设您要将水平线设为红色:
/* header */
.table > thead > tr > th {
border-bottom: 2px solid red;
}
/* rows */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
border-top: 1px solid red;
}
看小提琴 - >的 http://jsfiddle.net/XazR4/ 强>
答案 2 :(得分:2)
像<table class='table-condensed your_class'></table>
一样在表格中添加课程
并在你的CSS添加
table.your_class {
border:1px solid red;
}
将红色更改为您想要的任何颜色。