如何删除看似由像素的舍入分数中的错误引起的黑线?这似乎只是Chrome的问题,Firefox似乎正在进行更智能的舍入并完美呈现.
这个问题有一个简单的解决方案吗?
这就是Chrome呈现的方式:
.container {
height: 100px;
width: 100%;
background-color: black;
display: flex;
flex-flow: nowrap column;
}
.row {
background-color: lightgreen;
flex: 1 1 auto;
}
你可以尝试使用box-shadow填充间隙(?)
.container {
height: 100px;
width: 100%;
background-color: black;
display: flex;
flex-flow: nowrap column;
}
.row {
background-color: lightgreen;
flex: 1 1 auto;
box-shadow:0 1px lightgreen;
}