td与其之间的空格或填充:之后

时间:2016-08-23 05:21:29

标签: html css

我有一个包含tr>th的表格,td包含伪元素:after。我有CSS

table thead tr th:after {
  content: " ";
  width: 19%;
  display: block;
  height: 3em;
  float: right;
  background-color: white;
  border-left: 2px solid lightgray
}

.panel_content table thead tr th.site {
  border-top: 2px solid lightblue;
  background-color: lightblue;
}

enter image description here 如何删除:after和th元素之间的空格。

1 个答案:

答案 0 :(得分:0)

空格是由{after> width: 19%;引起的。这将占据表宽度的19%,具体取决于容器允许的宽度。