【发布时间】:2013-03-22 04:21:15
【问题描述】:
【问题讨论】:
标签: html css space html-table
【问题讨论】:
标签: html css space html-table
这是相关的 CSS:
table {
border-collapse: separate;
border-spacing: 2px;
}
这其实是浏览器默认样式:
【讨论】:
我相信这是导致这些边框的 CSS:
table {
border-collapse: separate;
border-spacing: 2px;
-webkit-border-horizontal-spacing: 2px;
-webkit-border-vertical-spacing: 2px;
}
【讨论】:
-webkit-border-horizontal-spacing: 2px; 不在样式表中:ecigarettereviewed.com/wp-content/themes/ecigarettereviewed/…
border-spacing:>2px 之间的小右箭头,它将展开以显示-webkit-border-horizontal|vertical-spacing。看起来这些是 webkit 的默认设置。