垂直水平居中分割

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了垂直水平居中分割相关的知识,希望对你有一定的参考价值。

Here's a simple way to get your div always on center in any screen size.
margins should be half of width and height.
  1. .centerDiv{
  2. width:968px;
  3. height:600px;
  4. background:#ccc;
  5. position:absolute;
  6. margin-top:-300px;
  7. margin-left:-484px;
  8. top:50%;
  9. left:50%;
  10. }

以上是关于垂直水平居中分割的主要内容,如果未能解决你的问题,请参考以下文章