【发布时间】:2017-03-29 00:06:26
【问题描述】:
我有一个 HTML 表格元素,我正在尝试在列之间添加边距,所以我使用了这些 css 属性:
table {
border-collapse: separate;
border-spacing: 36px 0px;
}
现在我想在整个行中添加边框底部,包括标题和正文中的每个 tr,但边框没有出现。 我用过:
tr {
border-bottom: 1px solid blue;
}
只有在我使用时才会出现:
table {
border-collapse: collapse;
}
但是我不会在列之间有边距。
我添加了我的DEMO here。
【问题讨论】:
标签: html css html-table css-tables