如何将主要内容集中在页面中间 - http://www.hentaireader.com/ ??
由于某种原因看起来它向左移了一点......
答案 0 :(得分:2)
#centerContent
要么与容器div的宽度相同,要么文字会填满该空格950px
,要么需要margin: 0px auto;
。
答案 1 :(得分:0)
移除浮动并添加边距(左/右)自动:
#centerContent {
margin: 0 auto;
width: 780px;
}
答案 2 :(得分:0)
#center{
position:absolute;
top:50%;
left:50%;
height:400px;
width:800px;
margin-left:-400px;
margin-top:-200px;
}
margin-left和top应该是你的身高和宽度的一半。完全居中。