javascript – 如何居中div?

前端之家收集整理的这篇文章主要介绍了javascript – 如何居中div?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在使用HTML(垂直和水平)居中div时遇到问题.我的代码看起来像这样:

只有chrome将此div放在屏幕中间.

最佳答案
这样做(垂直和水平):

  1. #container{
  2. position: absolute;
  3. width: 366px;
  4. height: 274px;
  5. left: 50%;
  6. top: 50%;
  7. margin-left: -183px; /* half width */
  8. margin-top: -137px; /* half height */
  9. }

猜你在找的HTML相关文章