【发布时间】:2023-03-02 21:50:01
【问题描述】:
在玩 flex 容器时,我注意到 Chrome 和 Firefox 都以比静态同级容器高 1px 的高度呈现它。
代码如下:
.container {
background-color: yellow;
border: 1px solid red;
}
.main {
border: 1px solid black;
}
.flex-cont {
display: inline-flex;
}
<div class="container">
<span class="main flex-cont">
This is the flex container, height is 20px
</span>
<span class="main">
This is not the flex container, height is 19px
</span>
</div>
在这里提琴:http://jsfiddle.net/pzoxfs90/
有人知道这是为什么以及如何避免吗?
【问题讨论】: