css 笔记

css 笔记

此时所有子元素都可以平铺

css 笔记

 

 

css 笔记

 

css 笔记

 

 

 

 

css 笔记

 

.user_list{
        display: flex;   
        
        flex-wrap: wrap; 
        li{
//          flex: 1;
            width: 25%;
            text-align: center;
            padding: .5rem;
            box-sizing: border-box; 
            span{
                display: block;
                width: 100%;
                height: 3.2rem;
                line-height: 3.2rem;
                background: #fff;
            }
        }
    }

 

 

css 笔记