CSS实现DIV水平 垂直居中-1
Posted 九转功成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS实现DIV水平 垂直居中-1相关的知识,希望对你有一定的参考价值。
水平大家都知道,一般固定宽度给个margin:0 auto;就可以了。下面实现水平垂直都居中
<div class="parent"> </div>
css
html,body{ width: 100%; height: 100%; } .parent{ width: 750px; height: 400px; background: orange; /*水平居中*/ margin: 0 auto; position: relative; top: 50%; margin-top: -200px;/*高度的一半*/ }
都居中了。也可以把margin-top:-200;换为CSS3新属性:transform:translateY(-50%);
以上是关于CSS实现DIV水平 垂直居中-1的主要内容,如果未能解决你的问题,请参考以下文章