您好,登錄后才能下訂單哦!
這篇文章主要介紹“css代碼如何實(shí)現(xiàn)多列布局”,在日常操作中,相信很多人在css代碼如何實(shí)現(xiàn)多列布局問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”css代碼如何實(shí)現(xiàn)多列布局”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
一. 定寬 + 自適應(yīng)
期望效果: 左側(cè)寬度固定, 右側(cè)寬度自適應(yīng)
公共代碼:
html:
<div class="parent"> <div class="left"> <p>left menu</p> </div> <div class="right"> <li>right item1</li> <li>right item2</li> <li>right item3</li> </div> </div>
css:
html, body, p, ul, li { margin: 0; padding: 0; } div.left { background: #d2e3e3; } div.right { background: #77DBDB; }
方案一: float
.left { float: left; width: 100px; } .right { margin-left: 100px; // 或 overflow: hidden }
方案二: table
.parent { display: table; width: 100%; table-layout: fixed; // https://blog.csdn.net/qq_36699230/article/details/80658742 .left, .right { display: table-cell; } .left { width: 100px; } }
方案三: flex
.parent { display: flex; .left { width: 100px; // 或 flex: 0 0 100px; } .right { flex: 1; } }
兩(多)列定寬 + 自適應(yīng) 布局使用上述方案均可, 對(duì)于中間一列的設(shè)置與第一列保持一致即可
不定寬(兩列或多列) + 自適應(yīng) 布局使用上述方案均可, 對(duì)于中間一列的設(shè)置與第一列保持一致即可, 不同的是不需要特別設(shè)置寬度, 需要特別注意的是使用table布局時(shí)的情況, 如下:
.parent { display: table; width: 100%; // 設(shè)置table-layout: fixed; 會(huì)使單元格等寬, 因此此處不設(shè)置 .left, .right { display: table-cell; } .left { width: 0.1%; // 寬度設(shè)置一個(gè)極小值, 由于沒有設(shè)置table-layout: fixed; 所以寬度由內(nèi)容決定 white-space:nowrap; } }
二. 等寬(兩/多列)布局
公共代碼:
html
<div class="parent"> <div class="column"> <p>1</p> </div> <div class="column"> <p>2</p> </div> <div class="column"> <p>3</p> </div> <div class="column"> <p>4</p> </div> </div>
css
html, body, div, p { margin: 0; padding: 0; } .parent { width: 800px; border: 1px solid coral; .column { height: 30px; background: bisque; p { background: #f0b979; height: 30px; } } }
方案一: float (個(gè)人并不喜歡, 寫法很死, 需要知道有多少列, 而且有邊框的情況下會(huì)超出容器)
.parent { margin-left: -20px; overflow: hidden; .column { float: left; width: 25%; padding-left: 20px; box-sizing: border-box; } }
方案二: flex (推薦)
.parent { display: flex; .column { flex: 1; &+.column { margin-left: 10px; } } }
三. 等高布局
推薦方案:
.parent { display: flex; } .left, .right { flex: 1; }
css的選擇器可以分為三大類,即id選擇器、class選擇器、標(biāo)簽選擇器。它們之間可以有多種組合,有后代選擇器、子選擇器、偽類選擇器、通用選擇器、群組選擇器等等
到此,關(guān)于“css代碼如何實(shí)現(xiàn)多列布局”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。