Flex布局时,并且设置warp,父层宽度如何自适应?
.flex{
display: flex;
flex-direction: row;
flex-wrap: wrap;
border: 1px solid green;
}
.item{
margin-bottom: 5px;
margin-right: 5px;
background: pink;
width: 70px;
height: 50px;
line-height: 50px;
text-align: center;
}
<div class="flex">
<div class="item">
</div>
<div class="item">
</div>
...
</div>
换行后,父层DIV 如何宽度不留白
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个或许可以帮你:https://github.com/shaozj/blo...
使用flex的:justify-content:space-between;
或参考下这个: https://codepen.io/danield770...
父元素添加 width: max-content