詳解html的幾種水平垂直居中的方式(基礎(chǔ))
發(fā)布時(shí)間:2019-08-20 16:44:08 作者:WSYF
我要評(píng)論
這篇文章主要介紹了詳解html的幾種水平垂直居中的方式,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
前言
我們?cè)诰帉戱R過程中,想必大家對(duì)水平垂直居中的方法了解并不多。所以我給大家總結(jié)式的列出幾種常用的水平垂直居中的方法。
第一種方法
<!--html盒子代碼-->
<!--水平垂直居中-->
<div class="Centered1">
<p>d第一種</p>
</div>
<!-css樣式部分-->
.Centered1{
background-color: #800070;
width: 100%;
height:500px;
position: relative;
}
.Centered1 p{
width: 200px;
height: 200px;
background-color: deeppink;
line-height: 200px;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
right:0;
top: 0;
margin: auto;
}
第二種方法
<!--html盒子代碼-->
<!--水平垂直居中-->
<div class="Centered2">
<p>d第二種</p>
</div>
<!-css樣式部分-->
/*第二種方法水平垂直居中*/
.Centered2{
background-color: #ef8518;
width: 100%;
height: 500px;
position: relative;
}
.Centered2 p {
position: absolute;
width: 200px;
height: 200px;
background-color:red;
line-height: 200px;
text-align: center;
left: 50%;
top:50%;
margin-left:-100px;
margin-top: -100px;
}
第三種方法
<!--html盒子代碼-->
<!--水平垂直居中-->
<div class="Centered3">
<p>d第三種</p>
</div>
<!-css樣式部分-->
/*第三種方法水平垂直居中*/
.Centered3{
background-color: dimgrey;
width: 100%;
height: 500px;
position: relative;
}
.Centered3 p {
position: absolute;
width: 200px;
height: 200px;
background-color:darkorange;
line-height: 200px;
text-align: center;
left: 50%;
top: 50%;
transform:translate(-50%,-50%);
}
第四種方法
<!--html盒子代碼-->
<!--水平垂直居中-->
<div class="Centered4">
<p>d第四種</p>
</div>
<!-css樣式部分-->
/*第四種方法水平垂直居中,老版本flex布局*/
.Centered4{
background-color: #FF4444;
width: 100%;
height: 500px;
display: -webkit-box;
-webkit-box-pack:center;
-webkit-box-align: center;
}
.Centered4 p {
width: 200px;
height: 200px;
background-color:cadetblue;
line-height: 200px;
text-align: center;
}
第五種方法
<!--html盒子代碼-->
<!--水平垂直居中-->
<div class="Centered5">
<p>d第五種</p>
</div>
<!-css樣式部分-->
/*第五種方法水平垂直居中,新版本的flex水平垂直居中*/
.Centered5{
background-color: darkslateblue;
width: 100%;
height: 500px;
display: flex;
justify-content:center;
align-items: center;
}
.Centered5 p {
width: 200px;
height: 200px;
background-color:fuchsia;
line-height: 200px;
text-align: center;
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
這篇文章主要介紹了Html5新增標(biāo)簽與樣式及讓元素水平垂直居中,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編2019-07-11- 這篇文章主要介紹了html中table表格的內(nèi)容水平和垂直居中顯示的相關(guān)資料,需要的朋友可以參考下2017-03-27
- 這篇文章主要針對(duì)HTML對(duì)于元素水平垂直居中進(jìn)行的探討,對(duì)元素水平垂直居中操作進(jìn)行講解,感興趣的小伙伴們可以參考一下2016-02-24
- 本文是小編日常遇到的關(guān)于html水平垂直居中的一些問題小結(jié),特此分享在腳本之家網(wǎng)站供大家參考2015-11-18
html元素水平居中、垂直居中、水平垂直居中于其父級(jí)元素的方法
這篇文章主要介紹了html元素 水平居中、垂直居中、水平垂直居中于其父級(jí)元素的方法,需要的朋友可以參考下2014-04-08


