如何使CSS网格中的图像在缺少空间时并排放置并跳到另一行
我正在尝试使用CSS网格以图片中所示的方式放置图像,但找不到正确的解决方案。
现在我只是简单地将网格流动更改为列,但网格元素在遇到容器的末尾时不会跳到另一行-它们会调整容器的大小并保持在相同的第一行。
我尝试使用grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr))
-它解决了跳转到另一行的问题,但它为所有元素提供了固定的宽度,而某些图像并不是那么宽。它会在图像之间造成空洞,这是我想要避免的。
您对如何实现这一目标有什么想法吗?
wrong solution 1
上图中的代码:
container {
display: grid;
grid-gap: 1rem;
grid-auto-flow: column;
}
photo { // all container's elements have this class
height: 10rem;
width: auto;
}
wrong solution 2
上图中的代码:
container {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
photo {
height: 10rem;
max-width: 100%;
}
解决方案
您看,这是flex
的象牙,不是grid
的象牙。使用grid
表示每行具有相同宽度的列。这里根本不需要。
html {
font-size: 10px;
}
.conteiner {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.photo {
height: 10rem;
margin: 0 1rem 1rem 0;
}
.photo img {
width: auto;
height: 100%;
}
<div class="conteiner">
<div class="photo"><img src="https://via.placeholder.com/500x200"></div>
<div class="photo"><img src="https://via.placeholder.com/300x200"></div>
<div class="photo"><img src="https://via.placeholder.com/200x200"></div>
<div class="photo"><img src="https://via.placeholder.com/400x200"></div>
<div class="photo"><img src="https://via.placeholder.com/500x200"></div>
<div class="photo"><img src="https://via.placeholder.com/300x200"></div>
<div class="photo"><img src="https://via.placeholder.com/200x200"></div>
</div>
虽然我使用的是Justified galleryjQuery插件,但如果我想要每行中的所有图像来填充所有宽度。
相关文章