亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何解決CSS垂直水平居中的問題

發布時間:2021-07-13 11:43:02 來源:億速云 閱讀:139 作者:小新 欄目:web開發

這篇文章主要介紹了如何解決CSS垂直水平居中的問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

CSS 居中對齊

  • 代碼中均省略了瀏覽器前綴

  • 以下例子以我的個人的標準排序

  • 當然也有更多的居中處理方法 但我覺得只有這5種方法是最完善的解決方案

flex 居中

優點:可對未知高度進行居中處理

<style>
    .wrap{height: 100%;display: flex; justify-content: center; align-items: center;align-content:center;}
    
    .other{background-color: #ccc; width: 400px;height: 400px;} /* 額外的樣式 可去除 */
</style>
<div class="wrap">
    <div class="other">
        <h3>這是第二層的內容 不會居中</h3>
    </div>
</div>

position + translate 居中

優點: 可對未知高度進行居中處理、嵌套層最少

<style>
    /* position 可選 absolute|fixed*/
    .center{position: absolute;left: 50%;top: 50%; transform: translate(-50%,-50%);}
    
    .other{background-color: #ccc; } /* 額外的樣式 可去除 */
</style>
<div class="center other">
    <h3>這一層的內容 不會居中</h3>
</div>

table-cell 居中

缺點:1. 居中層需要設置寬度(.center)。 2.外層多嵌套一層(.cell) 3. 居中層必須設置寬度(允許 %)

<style>
    .wrap{display: table;width: 100%;height: 100%;}
    .cell{display: table-cell;vertical-align:middle;}
    .center{width: 400px;margin-left:auto;margin-right:auto;}
    .other{background-color: #ccc;  height: 400px;} /* 額外的樣式 可去除 */
</style>
<div class="wrap">
    <div class="cell">
        <div class="center other">
            <h3>這一層的內容 不會居中</h3>
        </div>
    </div>
</div>

傳統居中 (2種)

缺點:1. margin 值必須為auto。 2. 居中層必須設置高寬(允許 %) 3. 必須使用 position

<style>
    /*
        1. left、top、right、bottom 可以任意,但必須相等
        2. position 可選 absolute|fixed
    */
    .center{position: absolute;left: 10px;top: 10px;right: 10px;bottom: 10px;margin: auto;width: 400px;height: 400px;}
    .other{background-color: #ccc; } /* 額外的樣式 可去除 */
</style>
<div class="center other">
    <h3>這一層的內容 不會居中</h3>
</div>

缺點: 居中層必須設置固定高寬,并且magin需要通過高寬計算得出。

<style>
    .wrap{position: relative;height: 100%;}
    .center{position: absolute;left: 50%;top: 50%; width: 400px;height: 300px; margin-left: -200px;margin-top: -150px;}
    .other{background-color: #ccc; } /* 額外的樣式 可去除 */
</style>
<div class="wrap">
    <div class="center other">
        <h3>這一層的內容 不會居中</h3>
    </div>
</div>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何解決CSS垂直水平居中的問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

css
AI

海丰县| 湘西| 乌拉特中旗| 聂拉木县| 荔波县| 宁津县| 高州市| 集贤县| 延川县| 淮滨县| 黔西| 海丰县| 大足县| 改则县| 华安县| 独山县| 千阳县| 吴江市| 晋江市| 扶沟县| 清丰县| 新兴县| 石门县| 浏阳市| 孙吴县| 牙克石市| 樟树市| 扶绥县| 枞阳县| 屯昌县| 拜泉县| 盐边县| 晋宁县| 大埔县| 平遥县| 徐州市| 遵化市| 泽库县| 万源市| 平乡县| 资阳市|