今天我们来学习关于“如何用flex-wrap实现换行,代码是什么”的内容,下文有详解方法和实例,内容详细,逻辑清晰,有需要的朋友可以参考,希望大家阅读完这篇文章后能有所收获,那么下面就一起来了解一下吧。
最近做个项目,其中有个样式是换行布局,作为样式渣渣的我一开始不会,只能查资料,然后摆平了它.今天得空了,简要记录一下,方便后面小伙伴布局使用.
<div class="planWrap"> <div class="content planItem">1</div> <div class="content planItem">2</div> <div class="content planItem">3</div> <div class="content planItem">4</div> <div class="content planItem">5</div> <div class="content planItem">6</div> </div> <style> .content { background: red; line-height:50px; height: 50px; width: 50px; text-align: center; margin-top:5px } .planWrap { width: 160px; height: 200px; border: 1px solid; display:flex; } </style>
<style> .planWrap { width: 160px; height: 200px; border: 1px solid; display:flex; flex-wrap: wrap; } </style>
说明:
1.flex-wrap 属性指定 flex 元素单行显示还是多行显示,该属性接受以下取值:
2.上面有提及wrap-reverse,展示一下wrap-reverse的样式
<style> .planWrap { width: 160px; height: 200px; border: 1px solid; display:flex; flex-wrap: wrap-reverse; } </style>
简写属性 flex-flow
上面的都是行分布,现在我想要垂直分布且换行
<style> .planWrap { width: 160px; height: 200px; border: 1px solid; display:flex; flex-wrap: wrap; flex-direction: column; } </style>
通过flex-direction
指定排列方向,flex-wrap
制定是否换行;不过这样写多少有点麻烦,可以使用flex-flow
来进行简写
// 第一个指定的值为 flex-direction ,第二个指定的值为 flex-wrap. flex-flow: flex-direction flex-wrap
<style> .planWrap { width: 160px; height: 200px; border: 1px solid; display:flex; flex-flow:column wrap; } </style>
Flex属性的简写
现在我不仅希望能换行,我还希望能2个一行
.planWrap { width: 160px; height: 200px; border: 1px solid; display:flex; flex-flow:row wrap; } .planItem { flex: 50%; }
这里面使用了flex属性,flex可以指定元素占据的百分比或者固定宽度,具体可以见上面文档,就不详细说明了.
现在我希望两个div直接间距10px,但是后面一个元素没有间距
.planItem { flex: 40%; margin-right: 10px; } .planItem:nth-child(2n) { margin-right: 0px; }
首先指定了margin-right
,所以我将flex
百分比调小,然后使用了nth-child
修改偶数位的元素
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
长按识别二维码并关注微信
更方便到期提醒、手机管理