当前位置:  开发笔记 > 前端 > 正文

无边框的表格单元格上有白线-如何禁用它们?

如何解决《无边框的表格单元格上有白线-如何禁用它们?》经验,为你挑选了1个好方法。

我创建了此表,并将padding和border设置为0。但是在单元格周围有这条奇怪的白线。这是什么?如何禁用它们?

HTML代码:

    

(该表只是在重复更多行。)

CSS代码:

    
Job Länge/mm Gesamt/QTY Rest/QTY Fertig um
Job1 800.000 50 20 14:40

(我

Job Länge/mm Gesamt/QTY Rest/QTY Fertig um
Job1 800.000 50 20 14:40
通过Safari Dev Tools 将的背景更改为灰色,因此线条更易于查看。)



1> CoderPi..:

在表中添加cellpadding="0"cellspacing="0"

还是在CSS中:在CSS中设置cellpadding和cellspacing?

演示:

#jobtabelle tr {
  height: 56px;
  line-height: 56px;
  border-top: 0;
  border-bottom: solid 1px #424242;
  overflow: hidden;
  font-size: 16px;
}
#jobtabelle tbody tr:first-child {
  background: #66bb6a;
}
#jobtabelle thead tr {
  height: 25px;
  line-height: 25px;
  margin-top: 10px;
}
#jobtabelle td {
  border-left: 0;
  border-right: 0;
  border-bottom: inherit;
  padding: 0;
  border-collapse: collapse;
}
#jobtabelle th:first-child +th +th +th,
#jobtabelle th:first-child +th +th +th +th,
#jobtabelle th:first-child +th +th +th +th +th,
#jobtabelle th:first-child +th +th +th +th +th +th,
#jobtabelle td:first-child +td +td +td,
#jobtabelle td:first-child +td +td +td +td,
#jobtabelle td:first-child +td +td +td +td +td,
#jobtabelle td:first-child +td +td +td +td +td +td {
  text-align: right;
}
Job Länge/mm Gesamt/QTY Rest/QTY Fertig um
Job1 800.000 50 20 14:40
推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有