当背景色为非纯白背景的时候,bootstrap table表格的白色边框显得很突兀,所以要把bootstrap table表格外面的边框全部去掉
1:去掉两侧线条,找到以下代码,注释边框代码
.fixed-table-container { position: relative; clear: both; /*border: 1px solid #ddd;*/ border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px }
2:去掉最底部线条
3:去掉表头底部线条
#mytab thead tr th { border: 0; }
最终效果是这样的,最外层的白色边框去掉