0

I'm currently making a website (To be honest I'm not great at coding) but I've come across a problem, I've made my content div to a margin of 0 auto, which should place it in the center? But it's not working at the moment?

Website (To see the problem) : http://baileyiglesias.host56.com/home

CSS : http://baileyiglesias.host56.com/css/mainstyle.css

Thanks a bunch(:

-Bailey

4

3 回答 3

0

看到你的网站后,我看到了这个

body {
    min-width:900px;    
    height: 100%;
    margin:0 auto;
    padding:0;
    background-color:#000;
}

只需将其更改为

body {
    width:900px;    
    height: 100%;
    margin:0 auto;
    padding:0;
    background-color:#000;
}

你没有给出宽度,因为这margin: 0 auto;不起作用

于 2013-05-27T14:45:34.100 回答
0

为内容 div 添加 css。

#content
{
  text-align: center;
}
于 2013-05-27T14:48:37.437 回答
0

这可能是你想要的:

#content {
    width: 900px; 
    margin: 0 auto;
}

如果您希望它更灵活,您可以将宽度更改为其他值,例如 % 宽度。

通常最好不要在body元素本身上设置宽度、最小宽度等。

于 2013-05-27T14:55:27.333 回答