li横向排列,根据父元素宽度自动换行

408 阅读1分钟
ul{
    display: flex; //父元素flex 伸缩盒子布局
    flex-wrap: wrap; //父元素设置换行
}

参考文章:www.cnblogs.com/guanhuohuo/…