【发布时间】:2022-02-02 05:55:31
【问题描述】:
我有一排图像在 Firefox 中可以正确调整大小,但在 Chrome 中根本没有调整大小。这些图片需要排成一排,不能相互折叠。
有什么建议吗?
.image-rail {
display: flex;
justify-content: center;
width: 100%;
}
.image-rail img {
height: auto;
width: 100%;
}
<div class="image-rail">
<img src="https://pngimg.com/uploads/square/square_PNG14.png" alt="">
<img src="https://pngimg.com/uploads/square/square_PNG14.png" alt="">
<img src="https://pngimg.com/uploads/square/square_PNG14.png" alt="">
<img src="https://pngimg.com/uploads/square/square_PNG14.png" alt="">
</div>
【问题讨论】: