CSS DIV CENTRADO HORIZONTAL Y VERTICALMENTE

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS DIV CENTRADO HORIZONTAL Y VERTICALMENTE相关的知识,希望对你有一定的参考价值。

#mydiv {
position:absolute;
top: 50%;
left: 50%;
width:30em;
height:18em;
margin-top: -9em; /*set to a negative number 1/2 of your height*/
margin-left: -15em; /*set to a negative number 1/2 of your width*/
border: 1px solid #ccc;
background-color: #f3f3f3; }

以上是关于CSS DIV CENTRADO HORIZONTAL Y VERTICALMENTE的主要内容,如果未能解决你的问题,请参考以下文章