如何集中我的网页

时间:2012-11-06 18:37:50

标签: web center

http://pastebin.com/GQ6Q0dti

- 我想在我的网页中心,但我没有找到成功的教程。 有人可以帮助我并解决我的问题 我只想把我的页面放在中心位置。感谢

2 个答案:

答案 0 :(得分:1)

如果要将其水平居中+垂直居中,请使用position: absolute;

Demo

.center {
   position: absolute;
   top: 50%;
   left: 50%;
   height: 200px;
   width: 400px;
   margin-top: -100px; /* Half of container height */
   margin-left: -200px; /* Half of container width */
}

如果你想只是水平居中,只需使用这个

margin: 0 auto;
        ^    ^
       T/B  L/R

只是不要忘记容器的宽度;)

答案 1 :(得分:0)

如果您只想制作水平中心,最好不要使用absolute位置,使用默认位置并设置margin:0px auto;

#Table_01 {
    width:792px;
    margin:0px auto;
}
#template {
   height:1584px;
}