Trick:css边框合并问题
2021-09-10 本文已影响0人
科科Cole
在使用<table>标签时我们知道,有一个css属性可以设置表格边框是否合并:border-collapse
。那么对于非表格布局呢,怎么设置边框合并?对单元格使用margin-right
,margin-bottom
即可:
.cell {
border: 1px solid #bfbfbf;
margin-right: -1px;
margin-bottom: -1px;
}
在使用<table>标签时我们知道,有一个css属性可以设置表格边框是否合并:border-collapse
。那么对于非表格布局呢,怎么设置边框合并?对单元格使用margin-right
,margin-bottom
即可:
.cell {
border: 1px solid #bfbfbf;
margin-right: -1px;
margin-bottom: -1px;
}