垂直水平居中方法總結

今天老大隨口問了這個問爛了的問題,我只回答了兩種,好吧,仍是老老實實總結下來增強下記憶吧。bash


一:定位+邊距(固定寬高度適用)佈局

<div class="container">
    <div class="inner"></div>
</div>
複製代碼
.container {
    width: 400px;
    height: 400px;
    position: relative;
    background-color: yellow;
}

.inner {
    position: absolute;
    height: 200px;
    width: 200px;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
    background-color: red;
}
複製代碼

二:定位+transform(不固定寬高也適用)flex

.container {
    width: 400px;
    height: 400px;
    background-color: yellow;
    position: relative;
}

.inner {
    height: 200px;
    width: 200px;
    background-color: red;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
複製代碼

三:flex佈局spa

.container {
    width: 400px;
    height: 400px;
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner {
    height: 200px;
    width: 200px;
    background-color: red;
}
複製代碼

四:table佈局code

<div class="container">
    <div class="outter">
        <div class="inner"></div>
    </div>
</div>
複製代碼
.container {
    width: 400px;
    height: 400px;
    background-color: yellow;
    display: table;
}

.outter {
    background-color: red;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.inner {
    height: 100px;
    width: 100px;
    display: inline-block;
    background-color: white;
}
複製代碼

五:雜談orm

以上爲比較好用的塊級元素居中方案,別的一些細節以下:string

行內元素垂直居中:it

一、父元素等值paddingio

二、子元素line-height等於父元素高度table

塊級元素水平居中:

margin: 0 auto
複製代碼

基礎仍是要打好的,知道不行,熟練也不夠,但願刻在腦子裏,造成條件反射才足夠。

相關文章
相關標籤/搜索