這個問題比較老,方法比較多,各有優劣,着情使用。html
1、盒子沒有固定的寬和高web
方案一、Transforms 變形瀏覽器
這是最簡單的方法,不只能實現絕對居中一樣的效果,也支持聯合可變高度方式使用。內容塊定義transform: translate(-50%,-50%) 必須加上app
top: 50%; left: 50%;post
優勢:flex
1. 內容可變高度this
2. 代碼量少spa
缺點:code
1. IE8不支持orm
2. 屬性須要寫瀏覽器廠商前綴
3. 可能干擾其餘transform效果
4. 某些情形下會出現文本或元素邊界渲染模糊的現象
<div class="wrapper">我不知道個人寬度和高是多少,我要實現水平垂直居中。</div>
.wrapper { padding: 20px; background: orange; color: #fff; position: absolute; top: 50%; left: 50%; border-radius: 5px; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); }
方案二二、在父級元素上面加上上面3句話,就能夠實現子元素水平垂直居中。
<div class="wrapper"> 我不知道個人寬度和高是多少,我要實現水平垂直居中。 </div>
.wrapper {
width: 500px;
height: 300px;
background: orange;
color: #fff;
/*只須要在父元素上加這三句*/
justify-content: center; /*子元素水平居中*/
align-items: center; /*子元素垂直居中*/
display: -webkit-flex;
}
2、盒子有固定的寬和高
方案一、margin 負間距
此方案代碼關鍵點:1.必需知道該div的寬度和高度,
2.而後設置位置爲絕對位置,
3.距離頁面窗口左邊框和上邊框的距離設置爲50%,這個50%就是指頁面窗口的寬度和高度的50%,
4.最後將該div分別左移和上移,左移和上移的大小就是該DIV寬度和高度的一半。
<div class="wrapper">我知道個人寬度和高是多少,我要實現水平垂直居中。</div>
.wrapper { width: 400px; height: 18px; padding: 20px; background: orange; color: #fff; position: absolute; top:50%; left:50%; margin-top: -9px; margin-left: -200px; }
方案二、margin:auto實現絕對定位元素的居中(該方法兼容ie8以上瀏覽器)
此方案代碼關鍵點:一、上下左右均0位置定位;
二、margin: auto;
<div class="wrapper">我不知道個人寬度和高是多少,我要實現水平垂直居中。</div>
.wrapper { width: 400px; height: 18px; padding:20px; background: orange; color: #fff; position: absolute; left:0; right:0; top: 0; bottom: 0; margin: auto; }