您好,登錄后才能下訂單哦!
這篇文章主要介紹“CSS如何設(shè)置水平和垂直居中”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“CSS如何設(shè)置水平和垂直居中”文章能幫助大家解決問題。
首先我先創(chuàng)建一個(gè)公共的模板樣式
<template> <div class="two"> <div class="parent"> <div class="child">123</div> </div> </div> </template> <style lang="less" scoped> .parent{ margin: 0 auto; width: 300px; height: 300px; border: 1px solid red; box-sizing: border-box; .child { height: 100px; width: 100px; background: #2f8df0; } } </style>
然后具體用到的樣式單獨(dú)寫在方法里面,首先先介紹4個(gè)平時(shí)布局的技巧。
1.水平居中div里面的div,設(shè)置子元素的寬度。
.parent{ width:300px; margin:0 auto; }
注意:如果子元素設(shè)置了display:table-cell
,那么margin:0 auto;
將會(huì)失效。
2.設(shè)置文字垂直居中,設(shè)置包含文字div的高。
.child{ text-align:center line-height:100px //知道子元素的高,設(shè)置和高一樣的高度 }
3.兩個(gè)或者多個(gè)塊級(jí)元素垂直居中對(duì)齊,父元素設(shè)置height和line-height相等。
.parent{ line-height: 300px; //知道父元素的高,設(shè)置和高一樣的高度 } .child1{ display: inline-block; vertical-align: middle; line-height: initial; //initial 關(guān)鍵字用于設(shè)置 CSS 屬性為它的默認(rèn)值。 } .child2{ display: inline-block; vertical-align: middle; line-height: initial; //initial 關(guān)鍵字用于設(shè)置 CSS 屬性為它的默認(rèn)值。 }
4.讓一個(gè)元素充滿當(dāng)前整個(gè)容器,設(shè)置absolute
.parent{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; }
OK,介紹完畢,下面開始介紹CSS實(shí)現(xiàn)水平垂直居中的方式。
1.不需要設(shè)置子元素的寬高,需要設(shè)置父元素的高度。使用 absolute + transform (推薦)
.parent{ position: relative } .child{ position: absolute; top:50%; left:50%; transform:translate(-50%,-50%) } // 備注一下,如果只需要上下居中那就只要保留top,只要左右居中的話就保留left,translate設(shè)置 translateY(-50%)或者translateX(-50%)
2.不需要設(shè)置子元素的寬高,不需要設(shè)置父元素的寬高。 使用flex布局(建議移動(dòng)端直接使用flex
pc端看需要兼容的情況。)
.parent{ display:flex; align-items:center; justify-content:center; } .child{ }
3.不需要設(shè)置子元素的寬高,需要設(shè)置父元素的高度。使用 lineheight。
注意:這種方法需要通過text-align在子元素中將文字顯示重置為想要的效果
.parent{ line-height: 300px; //設(shè)置和父元素的高度一樣 text-align: center; } .child{ display: inline-block; vertical-align: middle; line-height: initial; //initial 關(guān)鍵字用于設(shè)置 CSS 屬性為它的默認(rèn)值。 text-align: left; //將文字顯示重置為想要的效果 }
4.不需要設(shè)置子元素的寬高,需要設(shè)置父元素的高度。使用css-table (使用之后此元素的margin:0 auto
會(huì)失效)
.parent{ display: table-cell; vertical-align: middle; text-align: center; } .child{ display: inline-block; }
5.設(shè)置子元素的寬高,設(shè)置父元素的高度。 使用absolute + 負(fù)margin
.parent{ position: relative } .child{ position: absolute; top: 50%; left: 50%; margin-left: -50px; //知道子元素的寬高 margin-top: -50px; //知道子元素的寬高 }
6.設(shè)置子元素的寬高,設(shè)置父元素的高度。使用 absolute + margin auto
.parent{ position: relative } .child{ position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }
7.設(shè)置子元素的寬高,設(shè)置父元素的高度。 使用 absolute + calc(這種方法兼容性依賴calc的兼容性)
.parent{ position: relative } .child{ position: absolute; top: calc(50% - 50px); left: calc(50% - 50px); }
8.使用writing-mode(使用起來比較復(fù)雜,不推薦)
//公共的樣式在最上面 <div class="parent"> <div class="box-child"> <div class="child">123</div> </div> </div>
.parent{ writing-mode: vertical-lr; //改變文字顯示的方向 text-align: center; } .box-child{ writing-mode: horizontal-tb; display: inline-block; text-align: center; width: 100%; } .child{ text-align: left; //將文字顯示重置為想要的效果 margin: 0 auto; }
9.不需要設(shè)置子元素的寬高,不需要設(shè)置父元素的寬高。 使用grid布局(不建議使用,目前兼容性不是很好)
.parent{ display: grid; } .child{ align-self: center; justify-self: center; }
10.使用table布局(純粹湊方法,這年頭,誰還用table布局呀,哈哈哈哈)
<table> <tbody> <tr> <td class="parent"> <div class="child">123</div> </td> </tr> </tbody> </table>
.parent{ text-align: center; } .child{ display: inline-block; }
1.行內(nèi)樣式,最直接最簡(jiǎn)單的一種,直接對(duì)HTML標(biāo)簽使用style=""。
2.內(nèi)嵌樣式,就是將CSS代碼寫在之間,并且用進(jìn)行聲明。
3.外部樣式,其中鏈接樣式是使用頻率最高,最實(shí)用的樣式,只需要在之間加上就可以了。其次就是導(dǎo)入樣式,導(dǎo)入樣式和鏈接樣式比較相似,采用@import樣式導(dǎo)入CSS樣式表,不建議使用。
關(guān)于“CSS如何設(shè)置水平和垂直居中”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。