css3 - div 水平垂直置中
問題描述
想請(qǐng)問一下如何讓p水平垂直置中? 就是不管中間的p大小 他能隨著瀏覽器大小自動(dòng)置中對(duì)齊???
問題解答
回答1:每種寫法都會(huì)根據(jù)你的布局進(jìn)行一些小小變化。常用margin水平方法:
p { width:200px; margin:0 auto;}
1/2寬高的margin,50%的left、top方法:
p { Width:500px ; height:300px; Margin: -150px 0 0 -250px; position:relative; background-color:pink; left:50%; top:50%; }
LTRB值為0的方法:
p { width: 400px; height: 300px; margin:auto; position: absolute; left: 0; top: 0; right: 0; bottom: 0;}
transform方法
p { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
帶文本元素的話,讓line-height = height:
p { height:30px; line-height:30px; text-align:center;}
flex彈性盒子布局居中,給父元素添加:
p { display: flex; flex-flow: row wrap; width: 408px; align-items: center; justify-content: center;} 回答2:
css3方法可以用flex,給父級(jí)添加
.father { display: flex; justify-content: center; align-items: center;}回答3:
p { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);}回答4:
父元素設(shè)置為relative定位,本元素設(shè)置為絕對(duì)定位,然后通過top和translateY使其垂直居中
position: absolute; top: 50%; transform: translateY(-50%);回答5:
margin:auto
回答6:http://web.jobbole.com/83384/
回答7:外面的p{
position: relative;
}中間的p{
position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);
}
相關(guān)文章:
1. 我在導(dǎo)入模板資源時(shí)遇到無法顯示的問題,請(qǐng)老師解答下2. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?3. thinkphp6使用驗(yàn)證器 信息如何輸出到前端頁面4. javascript - h5微信中怎么禁止橫屏5. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入6. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)7. macos - 無法source activate python278. javascript - ajax請(qǐng)求不返回,關(guān)閉頁面時(shí)才返回。。。9. html5 - 前端面試碰到了一個(gè)緩存數(shù)據(jù)的問題,來論壇上請(qǐng)教一下10. 預(yù)訂金和尾款分別支付

網(wǎng)公網(wǎng)安備