我有一个HTML表格元素,我试图在列之间添加边距,所以我使用了那些css属性:
table {
border-collapse: separate;
border-spacing: 36px 0px;
}
现在我想在标题和正文中的每个tr中添加border-bottom到整行,但边框不会出现.
我用了:
tr {
border-bottom: 1px solid blue;
}
它只在我使用时出现:
table {
border-collapse: collapse;
}
但是我不会在列之间留有余量.
我加了我的DEMO here.
最佳答案
您可以使用:在伪类之后对其进行样式设置,如下所示:
body {
background: #eee;
}
.mytable{
border-collapse: separate;
background-color: white;
border-spacing: 36px 0px;
position: relative;
overflow: hidden;
}
.mytable td,.mytable th {
border-left: 1px solid black;
border-right: 1px solid black;
}
.mytable th:after,.mytable td:after {
position: absolute;
background: blue;
margin-top: 18px;
content: '';
height: 1px;
right: 0;
left: 0;
}
原文链接:/html/425551.html
猜你在找的HTML相关文章