我在 Google Pixel 和三星 S8 中遇到了一个问题,在 div 周围有类似边框的东西。我们必须使用 Google Pixel 或三星 S8 运行它才能看到问题。附上图像以更好地理解
Js小提琴代码https://jsfiddle.net/s23xdks7/4/
.parent{
width: 100%;
background-color: red;
height: 50px;
line-height: 0;
}
.child__01{
outline: none;
background-color: white;
height: 50px;
width: 33.3%;
float: left;
}
<div class="parent">
<div class="child__01">
</div>
<div class="child__01">
</div>
<div class="child__01">
</div>
</div>