Jquery数据表删除水平线

前端之家收集整理的这篇文章主要介绍了Jquery数据表删除水平线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
需要帮助,我正在尝试删除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;
}

演示 – > http://jsfiddle.net/Ljortyx8/

原文链接:https://www.f2er.com/jquery/241348.html

猜你在找的jQuery相关文章