1.web
1 body{ 2 text-align:center; 3 }
缺點:body內全部內容一併居中佈局
2.post
.center{ position: fixed; left: 50%; }
缺點:須要設置position屬性,網頁複雜時容易擾亂頁面佈局,並且只是元素的起始位置居中flex
3.url
1 .center{ 2 width:500px; 3 margin: 0 auto; 4 }
缺點:須要設置div寬度spa
4.code
1 .center { 2 display: -webkit-flex; 3 -webkit-justify-content: center; 4 -webkit-align-items: center; 5 }
缺點:須要支持Html5orm
5.htm
1 .center { 2 position: absolute; 3 top: 50%; 4 left: 50%; 5 -ms-transform: translate(-50%,-50%); 6 -moz-transform: translate(-50%,-50%); 7 -o-transform: translate(-50%,-50%); 8 transform: translate(-50%,-50%); 9 }
缺點:須要支持Html5
6.
1 margin: auto; 2 position: absolute; 3 left: 0; 4 right: 0;