我有一个 CSS 网格
.wrapper {
display: grid;
grid-template-columns: repeat(auto-fill, 12.5vw );
grid-template-rows: repeat(auto-fill, 12.5vw );
background-color: black;
grid-auto-flow: row dense;
color: #444;
}
<div class="wrapper">
<div class="box wide tall a">
</div>
<div class="box b">
</div>
<div class="box c">
</div>
<div class="box c">
</div>
<div class="box d">
</div>
<div class="box e">
</div>
<div class="box f">
</div>
<div class="box g">
</div>
<div class="box h">
</div>
</div>
我想知道我的 javascript 代码中的列数。是否可以?
编辑:我想要这个的原因是,如果项目数量少于足够数量以使其成为一个正方形,我希望这些额外的项目根本不显示。
慕妹3242003
呼唤远方
相关分类