2011-04-10 72 views

回答

2

#centerContent要麼需要與容器div的寬度相同,以便文本填充該空間,950px或它需要有一個margin: 0px auto;

+0

謝謝,工作完美 – GreatestSwordsman 2011-04-10 01:06:24

0

刪除浮動,並添加邊距(左/右)汽車:

#centerContent { 
    margin: 0 auto; 
    width: 780px; 
} 
0
#center{ 
position:absolute; 
top:50%; 
left:50%; 
height:400px; 
width:800px; 
margin-left:-400px; 
margin-top:-200px; 
} 

margin-left和top應該是您的高度和寬度的負值的一半。完美中心。