They use the property border-bottomfor tdand th- Link .. so the selector you can use is
.table.table-condensed tr th {
border-bottom: 2px solid #f00;
}
.table.table-condensed tr td {
border-bottom: 1px solid #f00;
}
This applies to all tables, so it would be better if you assigned a unique one classor idchanged the selector accordingly.
If you want, you can also customize your Bootstrap here .
source
share