怎么在css中實現(xiàn)多列布局?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、成都網(wǎng)站建設、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務昌平,十年網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:13518219792一. 定寬 + 自適應
期望效果: 左側(cè)寬度固定, 右側(cè)寬度自適應
公共代碼:
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; } }
兩(多)列定寬 + 自適應 布局使用上述方案均可, 對于中間一列的設置與第一列保持一致即可
不定寬(兩列或多列) + 自適應 布局使用上述方案均可, 對于中間一列的設置與第一列保持一致即可, 不同的是不需要特別設置寬度, 需要特別注意的是使用table布局時的情況, 如下:
.parent { display: table; width: 100%; // 設置table-layout: fixed; 會使單元格等寬, 因此此處不設置 .left, .right { display: table-cell; } .left { width: 0.1%; // 寬度設置一個極小值, 由于沒有設置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 (個人并不喜歡, 寫法很死, 需要知道有多少列, 而且有邊框的情況下會超出容器)
.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; }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設公司,的支持。
當前題目:怎么在css中實現(xiàn)多列布局-創(chuàng)新互聯(lián)
轉(zhuǎn)載來于:http://aaarwkj.com/article36/coccsg.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化、外貿(mào)網(wǎng)站建設、電子商務、做網(wǎng)站、靜態(tài)網(wǎng)站、小程序開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容