需要帮助,我正在尝试删除jQuery Datatables中的水平线.
解决方法
那些不同的线由第一个线条呈现. < thead>中的元素和< tfoot>.使用
table.dataTable thead th { border-bottom: 0; } table.dataTable tfoot th { border-top: 0; }
……删除它们.演示 – > http://jsfiddle.net/dgsccstp/尝试注释掉CSS并重新运行.
如果你没有指定任何页脚,即没有< tfoot>< / tfoot>部分,这样删除底线:
table.dataTable.no-footer { border-bottom: 0; }
如果您有多个DataTable并且只想删除一个(或多个)特定表的边框,请将表#id替换为表作为选择器:
#example1.dataTable thead th { border-bottom: 0; } #example1.dataTable tfoot th { border-top: 0; }