移动端display:flex布局时候,子元素有背景颜色时候,背景颜色不能铺满,有缝隙,
// less
.t-flex {
background: blue;
display: flex;
> div:first-child {
100%;
}
> div:last-child {
100%;
}
> div {
30px;
background: blue;
height: 30px;
flex: 1;
}
}
<div className="t-flex">
<div></div>
<div>1</div>
<div></div>
</div>