bootstrap table去掉竖线边框

 <table id="allMonitorTable" data-toggle="table" class="table-no-bordered"> </table>

然后设置css:


#allMonitorTable{border: 1px solid #e5e9ee; }

#allMonitorTable thead{border: 1px solid #e5e9ee; }

table生成的效果如下:

data-classes="table table-no-border"

则是所有线条都消失

原文地址:https://www.cnblogs.com/liuXiaoDi/p/12868635.html