46.纯css实现瀑布流(flex)


效果图

HTML

<div class="masonary">
            <div class="clumn">
                <div class="item"> 
                    <div class="item__content" style="height: 100px;background: lightblue;">1 </div> 
                    <div class="item__content" style="height: 210px;background: orange;"> 2</div> 
                    <div class="item__content" style="height: 110px;background: lightcoral;">3 </div> 
                    <div class="item__content" style="height: 170px;background: lightgray;"> 4</div> 
                    <div class="item__content" style="height: 100px;background: lightblue;">5 </div> 
                    <div class="item__content" style="height: 180px;background: lightsteelblue;">6 </div> 
                </div>
            </div>
            <div class="clumn">
                <div class="item"> 
                    
                    <div class="item__content" style="height: 100px;background: lightblue;"> 7</div> 
                    <div class="item__content" style="height: 120px;background: lightsteelblue;">8</div> 
                    <div class="item__content" style="height: 60px;background: orange;"> 9</div> 
                    <div class="item__content" style="height: 200px;background: orange;">10 </div> 
                    <div class="item__content" style="height: 100px;background: lightcoral;">11 </div> 
                    <div class="item__content" style="height: 260px;background: lightgray;">12 </div> 
                </div>
            </div>
            <div class="clumn">
                <div class="item"> 
                    <div class="item__content" style="height: 130px;background: lightcyan;">13 </div> 
                    <div class="item__content" style="height: 199px;background: orange;">14 </div> 
                    <div class="item__content" style="height: 160px;background: lightcoral;">15 </div> 
                    <div class="item__content" style="height: 146px;background: orange;">16 </div> 
                    <div class="item__content" style="height: 160px;background: lightcoral;">17 </div> 
                    <div class="item__content" style="height: 111px;background: orange;">18 </div> 
                </div>
            </div>
        </div>

css

.masonary{
                width: 100%;
                max-width: 1000px;
                margin: auto;
                display: flex;
                flex-direction: column;
                height: auto;
            }
            @media only screen and (min-width: 500px) { 
                .masonary { flex-direction: row; } 
            }
            
            .clumn{
                margin-left: 0.5rem;
                display: flex; 
                flex-flow: column wrap; 
                width: 100%;
            }
            @media only screen and (max-width: 500px) { 
                .clumn { width: 100%;max-width: 95%;margin: auto; } 
            }
            
            .clumn>.item>.item__content{
                margin-bottom: 0.5rem;
                color: white;
                text-align: center;
            }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM