CSS设置元素上下左右居中的方法有很多,其中最常用的方法有两种:一种是使用margin属性,另一种是使用position属性。
使用margin属性可以设置元素的上下左右居中,具体方法是:
.element { margin: auto; width: 500px; height: 200px; }
使用position属性,需要设置元素的定位为relative或absolute,使用top、left、right、bottom属性来实现上下左右居中,具体方法是:
.element { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
本文链接:http://task.lmcjl.com/news/12868.html