前端之家收集整理的这篇文章主要介绍了
javascript – 如何居中div?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在使用HTML(垂直和水平)居中div时遇到问题.我的代码看起来像这样:
最佳答案
这样做(垂直和水平):
#container{
position: absolute;
width: 366px;
height: 274px;
left: 50%;
top: 50%;
margin-left: -183px; /* half width */
margin-top: -137px; /* half height */
}