无边框bootstrap表格(示例)
学以致用
・1 分钟阅读
你可以将它添加到你的css中:
.table-borderless td,
.table-borderless th {
border: 0;
}
并按照您的方式使用bootstrap表格,将table-borderless类添加到表格中:
<table class="table table-borderless table-condensed table-hover">
</table>
注意:你需要在Bootstrap css之后,放置你的css文件;