答案 0 :(得分:1)
您可以使用inline-block
CSS属性:
.box2 {
display: inline-block;
width: 200px;
height: 100px;
margin: 1em;
}
在此处详细了解此媒体资源:Inline-Block - LearnLayout
答案 1 :(得分:1)
One possibility is to use flexbox with these settings on your container element:
.wrapper {
display: flex:
justify-content: flex-start;
flex-wrap: wrap;
}