使DIV水平和垂直居中的最简单方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使DIV水平和垂直居中的最简单方法相关的知识,希望对你有一定的参考价值。
/* CSS Document */ .centered_div { width: 100px; height: 100px; position: absolute; top: 50%; left: 50%; margin-left: -50px; margin-top: -50px; background: red; } Here is another example with size 500 x 200 px. /* CSS Document */ .centered_div { width:500px; height: 200px; position: absolute; top: 50%; left: 50%; margin-left: -250px; margin-top: -100px; background: red; }
以上是关于使DIV水平和垂直居中的最简单方法的主要内容,如果未能解决你的问题,请参考以下文章