大家好,欢迎来到IT知识分享网。
要生成的效果图如下:
解决办法
1. 父元素定高的情况下,直接使用 align-content: space-between;
ul{
list-style: none;
display: flex;
height: 614px;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-content: space-between;
}
ul li{
width: 234px;
height: 300px;
background-color: rgb(255, 2, 192);
}
2. 父元素不定高的情况下
1)设置需要更改间距的元素(li)的margin-bottom:14px
,然后用父容器(ul)的margin-bottom: -14px;
来抵消。
ul{
list-style: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin-bottom: -14px;
justify-content: space-between;
align-content: space-between;
}
li{
margin-bottom: 14px;
}
ul li{
display: flex;
width: 234px;
height: 300px;
background-color: rgb(255, 2, 192);
}
2) 设置需要更改间距的元素(li)的margin-bottom:14px;然后使用结构伪类选择器设置最后的几个元素margin-bottom: 0 ;
ul{
list-style: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-content: space-between;
}
li{
margin-bottom: 14px;
}
li:nth-child(n+5){
margin-top: 0;
}
ul li{
display: flex;
width: 234px;
height: 300px;
background-color: rgb(255, 2, 192);
}
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/26489.html