91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在css中實現多列布局

發布時間:2022-04-28 15:49:44 來源:億速云 閱讀:158 作者:iii 欄目:大數據

這篇“如何在css中實現多列布局”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“如何在css中實現多列布局”文章吧。

一. 定寬 + 自適應

期望效果: 左側寬度固定, 右側寬度自適應
公共代碼:
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; 所以寬度由內容決定
        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;
}

以上就是關于“如何在css中實現多列布局”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

长治县| 韶关市| 禹州市| 株洲市| 平和县| 视频| 阳原县| 中山市| 呈贡县| 教育| 宁武县| 安庆市| 丽水市| 苏尼特右旗| 冕宁县| 勐海县| 南投市| 巫山县| 兴安盟| 澄城县| 福州市| 仁怀市| 洛扎县| 三河市| 漳州市| 枣庄市| 郧西县| 青川县| 平武县| 横山县| 罗江县| 崇阳县| 黑水县| 曲靖市| 砚山县| 马山县| 上栗县| 那曲县| 射洪县| 图们市| 天台县|