在下面的例子中,我想以相等的空间between
和around
水平分布蓝色和绿色列
我尝试了justify-content
和align-items
的各种组合,但没有成功。
求你了,救命
.cols{
width:calc(100% - 30px);
margin:0 auto;
display:grid;
grid-template-columns:340px 140px;
background:lightblue;
height:90vh;
}
.cola{background:blue;}
.colb{background:green;}
<div class='cols'>
<div class='cola'></div>
<div class='colb'></div>
</div>
1条答案
按热度按时间quhf5bfb1#
如果我没理解错的话你要找的是
justify-content: space-evenly