在bootstrap中更改类'table table-condensed'的水平线的颜色

时间:2014-02-13 11:58:03

标签: html css twitter-bootstrap

如何更改类table-condensed的引导程序表中水平线的颜色?

3 个答案:

答案 0 :(得分:5)

他们对border-bottomtd - 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 */
}

这将适用于所有表格,因此如果您指定一个唯一的classid并相应更改选择器会更好。


如果需要,您还可以自定义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;
}

将红色更改为您想要的任何颜色。