如何设置DIV水平垂直居中
Posted web之家
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置DIV水平垂直居中相关的知识,希望对你有一定的参考价值。
一、水平居中
需要设置两点:
1 设置DIV 的width属性即宽度。
2 设置div的margin-left和margin-right属性即可
代码:
<div style="width:800px; margin-left:auto; margin-right:auto; color:White; height:400px">DIV居中</div>
二、DIV垂直居中
同样的道理,需要设置两点:
1 设置DIV 的height属性即宽度。
2 设置div的margin-top和margin-bottom属性值为auto即可
以上是关于如何设置DIV水平垂直居中的主要内容,如果未能解决你的问题,请参考以下文章