码迷,mamicode.com
首页 > 其他好文 > 详细

解决弹性布局使用justify-content:space-between后最后一行多个元素排版问题

时间:2020-02-03 17:28:49      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:伪类   使用   display   border   splay   after   布局   radius   justify   

当一行有三个元素的时候直接加个伪类就行,三个以上就需要加占位元素了

<div class="hot-content">

  <div class="hotList"></div>

  <div class="pick"></div>

  <div class="pick"></div>

一行显示五个,多余换行

.hot-content{
    width: 100%;
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: justify;

}
.hot-content:after{
    content: ‘‘;
    width: 19%;
}
.pick{
    width: 19%;
    overflow: hidden;
}
.hotList{
    width: 19%;
    content: ‘‘;
    overflow: hidden;
    /* margin-right: 1.25%; */
    border-radius: 5px;
    margin-bottom: 1rem;
}
 
 
四列加一个pick,五个加俩,一次类推

解决弹性布局使用justify-content:space-between后最后一行多个元素排版问题

标签:伪类   使用   display   border   splay   after   布局   radius   justify   

原文地址:https://www.cnblogs.com/lishuang2243/p/12256420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!