css實現(xiàn)水平垂直居中的幾種方法

筆記學(xué)習(xí)整理

css垂直水平居中分為:

  • 定寬居中
    方法①absolute+負margin
    ②absolute+margin:auto
    ③absolute+calc
    ④ min-height: 100vh+flex+margin:auto
  • 不定寬居中
    ①absolute + transform
    ②lineheight
    ③writing-mode
    ④css-table
    ⑤flex
    ⑥grid

一、定寬居中

1、定寬居中(absolute+負maigin)

position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -50px;

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>定寬居中</title>
    <style>
        .father {
            width: 400px;
            height: 400px;
            border: 1px solid blue;
            position: relative;
        }
        
        .son {
            width: 100px;
            height: 100px;
            background-color: orange;
            /* 1、定寬高定位:absolute + 負邊距margin */
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -50px;
            margin-left: -50px;
        }
    </style>
</head>

<body>
    <div class="father">
        <div class="son">

        </div>
    </div>
</body>

</html>

2、定寬居中(absolute+maigin:auto)

position:absolute;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            position: relative;
        }
        
        .box.size {
            width: 100px;
            height: 100px;
        }
        
        .box {
            background: green;
            /*2奄妨、定寬高定位:absolute + margin:auto */
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box size">
            子元素定寬高
        </div>
    </div>
</body>

</html>

3、定寬居中(absolute+calc)

position:absolute;
top:calc(50% - 50px);
left:calc(50% - 50px);

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            position: relative;
        }
        
        .box.size {
            width: 100px;
            height: 100px;
        }
        
        .box {
            background: green;
            /* 3窿克、定寬高定位:(兼容性依賴css3的calc)absolute + 計算屬性calc  */
            position: absolute;
            top: calc(50% - 50px);
            left: calc(50% - 50px);
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box size">
            子元素定寬高
        </div>
    </div>
</body>

</html>

4具被、定寬居中(min-height: 100vh+flex+margin:auto)

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>定寬居中</title>
    <style>
        main{
            min-height: 100vh;
            /* vh相對于視窗的高度,視窗高度是100vh */
            /* “視區(qū)”所指為瀏覽器內(nèi)部的可視區(qū)域大小跃惫,
            即window.innerWidth/window.innerHeight大小叮叹,
            不包含任務(wù)欄標(biāo)題欄以及底部工具欄的瀏覽器區(qū)域大小。 */
            display: flex;
        }
        div{
            width: 50px;
            height: 50px;
            background-color: red;
            margin: auto;
        }
    </style>
</head>

<body>
    <main>
        <div></div>
    </main>
</body>
</html>

二爆存、不定寬居中

1蛉顽、不定寬高居中:absolute+transform(依賴translate 2d的兼容性)

position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>不定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            position: relative;
        }
        
        .box {
            background: green;
            /* 1、不定寬高居中:(依賴translate 2d的兼容性)absolute+transform */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box">
            子元素不定寬高
        </div>
    </div>
</body>

</html>

2先较、不定寬高居中:lineheight

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>不定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            /* 2携冤、不定寬高居中  */
            text-align: center;
            line-height: 300px;
            font-size: 0px;
        }
        
        .box {
            /* 2、不定寬高居中l(wèi)ineheight */
            display: inline-block;
            vertical-align: middle;
            line-height: inherit;
            text-align: left;
            font-size: 16px;
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box">
            子元素不定寬高
        </div>
    </div>
</body>

</html>

3闲勺、不定寬高居中

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>不定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            /* 3曾棕、不定寬高居中css-table */
            display: table-cell;
            text-align: center;
            vertical-align: middle;
        }
        
        .box {
            /* 3、 */
            display: inline-block;
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box">
            子元素不定寬高
        </div>
    </div>
</body>

</html>

4菜循、不定寬高居中flex

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>不定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            /* 4翘地、不定寬高居中flex */
            display: flex;
            justify-content: center;
            align-items: center;
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box">
            子元素不定寬高
        </div>
    </div>
</body>

</html>

5、不定寬高居中g(shù)rid (css3網(wǎng)格系統(tǒng)grid兼容性不如flex 不推薦使用)

display: grid;
justify-self: center;
align-self: center;

<!DOCTYPE HTML>
<!--[if lt IE 7 ]><html class="ie6"><![endif]-->
<!--[if IE 7 ]><html class="ie7"><![endif]-->
<!--[if IE 8 ]><html class="ie8"><![endif]-->
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html>
<!--<![endif]-->

<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title>不定寬高定位</title>
    <meta content="" name="Description" />
    <meta content="" name="Keywords" />
    <link rel="stylesheet" type="text/css" href="" />
    <script type="text/javascript"></script>
    <style>
        .wp {
            border: 1px solid red;
            width: 300px;
            height: 300px;
            /* 5债朵、grid */
            display: grid;
        }
        
        .box {
            /* 5子眶、不定寬高居中g(shù)rid(兼容性不如flex 不推薦使用) */
            justify-self: center;
            align-self: center;
        }
    </style>
</head>

<body>
    <div class="wp">
        <div class="box">
            子元素不定寬高
        </div>
    </div>
</body>

</html>

這邊通過網(wǎng)上學(xué)習(xí),總結(jié)了以上幾種方法序芦,便于日后遺忘臭杰。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市谚中,隨后出現(xiàn)的幾起案子渴杆,更是在濱河造成了極大的恐慌寥枝,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件磁奖,死亡現(xiàn)場離奇詭異囊拜,居然都是意外死亡,警方通過查閱死者的電腦和手機比搭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門冠跷,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人身诺,你說我怎么就攤上這事蜜托。” “怎么了霉赡?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵橄务,是天一觀的道長。 經(jīng)常有香客問我穴亏,道長蜂挪,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任嗓化,我火速辦了婚禮棠涮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蟆湖。我一直安慰自己故爵,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布隅津。 她就那樣靜靜地躺著,像睡著了一般劲室。 火紅的嫁衣襯著肌膚如雪伦仍。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天很洋,我揣著相機與錄音充蓝,去河邊找鬼。 笑死喉磁,一個胖子當(dāng)著我的面吹牛谓苟,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播协怒,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼涝焙,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了孕暇?” 一聲冷哼從身側(cè)響起仑撞,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤赤兴,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后隧哮,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體桶良,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年沮翔,在試婚紗的時候發(fā)現(xiàn)自己被綠了陨帆。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡采蚀,死狀恐怖歧譬,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情搏存,我是刑警寧澤瑰步,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站璧眠,受9級特大地震影響缩焦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜责静,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一袁滥、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧灾螃,春花似錦题翻、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至熄赡,卻和暖如春姜挺,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背彼硫。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工炊豪, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人拧篮。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓词渤,卻偏偏與公主長得像,于是被迫代替她去往敵國和親串绩。 傳聞我的和親對象是個殘疾皇子缺虐,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容

  • CSS布局解決方案(終結(jié)版) 前端布局非常重要的一環(huán)就是頁面框架的搭建,也是最基礎(chǔ)的一環(huán)赏参。在頁面框架的搭建之中志笼,又...
    殺個程序猿祭天閱讀 585評論 0 2
  • 前端布局非常重要的一環(huán)就是頁面框架的搭建沿盅,也是最基礎(chǔ)的一環(huán)。在頁面框架的搭建之中纫溃,又有居中布局腰涧、多列布局以及全局布...
    一個敲代碼的前端妹子閱讀 771評論 0 12
  • 各種純css圖標(biāo) CSS3可以實現(xiàn)很多漂亮的圖形,我收集了32種圖形紊浩,在下面列出窖铡。直接用CSS3畫出這些圖形,要比...
    劍殘閱讀 9,474評論 0 8
  • 圖/文 利子 這是昨天畫好的坊谁,為了應(yīng)今天的節(jié)日 也祝自己節(jié)日快樂费彼! 在余生的歲月里,不再比較口芍,不再糾纏箍铲,不再懷念,...
    Angel利子閱讀 265評論 1 6
  • 昨晚看完鬓椭,今天又看颠猴。好文。說不出話來小染,所以翘瓮,還是摘錄吧。 1裤翩、沒有方向時资盅,你覺得都是方向。來回探索踊赠,大量時間被消耗...
    木桶007閱讀 155評論 0 0