怎样可以将bootstrap表格中每一行的border-bottom设置为:none?
1、可以用class给他重新添加样式 比如
table .no-border{
border-bottom: none;
}
这里注意下比较具体的选择器会覆盖之前的样式或者直接添加!important也可以
2、
tbody > tr {
border-bottom: none !important;
}
tbody > tr > td {
border-bottom: none !important;
}
3 回答2.3k 阅读
2 回答1.2k 阅读✓ 已解决
2 回答1.2k 阅读✓ 已解决
4 回答1.1k 阅读
1 回答933 阅读✓ 已解决
2 回答1.6k 阅读
2.9k 阅读
自己写样式啊