1.
1 body{ 2 text-align:center; 3 }
缺点:body内所有内容一并居中
2.
.center{ position: fixed; left: 50%; }
缺点:需要设置position属性,网页复杂时容易扰乱页面布局
3.
1 .center{ 2 width:500px; 3 margin: 0 auto; 4 }
缺点:需要设置div宽度
4.
1 .center { 2 display: -webkit-flex; 3 -webkit-justify-content: center; 4 -webkit-align-items: center; 5 }
缺点:需要支持Html5
原文:http://www.cnblogs.com/ones/p/4362531.html