繁体   English   中英

如何删除bootstrap 3.0表格中的下边框?

[英]How do I remove the bottom border on a bootstrap 3.0 table thead?

我有一个我正在研究的新项目,我正在使用Bootstrap 3.0。

我有一个表“class”(并没有),它有一个thead和tbody在它的DOM中。 tbody中没有任何边框,但是在thead中有一个小的白色(或接近白色)边框,在我的生命中,我无法消失。

这是该表所在的网站: http//majornoob.com/dev/mcsr/

如果我可以帮助解决我的问题,我会非常乐意编辑这篇文章。

编辑

这是我接受的答案的修改版本,因为我只是删除边框而不是修改其他任何内容:

.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:none;}

是的,您可以删除此边框:

css文件中,您可以看到:

在bootstrap中你有以下CSS用于表头元素的set border-bottom

.table thead>tr>th {
   vertical-align: bottom;
   border-bottom: 2px solid hsl(0, 0%, 87%);
}

并遵循CSS在表行元素上设置border-top

.table thead>tr>th,.table tbody>tr>th,.table tfoot>tr>th,.table thead>tr>td,.table tbody>tr>td,.table tfoot>tr>td{
   padding:8px;
   line-height:1.428571429;
   vertical-align:top;
   border-top:1px solid #ddd
}

通过删除这两种边框样式,您可以轻松获得成功和所需。

这是边界:

.table thead>tr>th {
vertical-align: bottom;
border-bottom: 2px solid #ddd;
}

你可以随意编辑它。



更新:

编辑这个类:

.table thead>tr>th, .table tbody>tr>th, .table tfoot>tr>th, .table thead>tr>td, .table tbody>tr>td, .table tfoot>tr>td {
padding: 8px;
line-height: 1.428571429;
vertical-align: top;
border-top: 1px solid #ddd;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM