gpt4 book ai didi

css - 很好地排列内联 block div

转载 作者:行者123 更新时间:2023-11-28 18:28:20 25 4
gpt4 key购买 nike

我有一组具有这种布局的 div:

div.post_summary {
clear: none;
width: 170px;
display: inline-block;
float: left;
margin: 5px;
background-color: #FF5900;
}

现在看起来像:

enter image description here

但我希望它看起来像:

enter image description here

div 的顺序无关紧要。我该怎么做?

最佳答案

因为顺序无关紧要,您可以使用 CSS 列来做到这一点:

http://codepen.io/cimmanon/pen/CcGlE

div.container { /* container holding all of your `div.post_summary` elements */
columns: 20em; /* desired width of the columns */
}

div.post_summary {
margin: .5em;
background-color: #CCC;
}

div.post_summary:first-child {
margin-top: 0;
}

确保检查 http://caniuse.com/#feat=multicolumn查看您需要哪些前缀。

关于css - 很好地排列内联 block div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15073105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com