使用保证金集中设置div:0 auto?

时间:2011-10-13 22:28:03

标签: css

我正试图在http://s361608839.websitehome.co.uk/pt-build/templatebuild/的中心位置设置2个div,特别是#pricing和#bmicalculator。

在#pricing的CSS中,它设置如下:

#pricing {
    width: 850px;
    margin: 0 auto;
    border-bottom: 1px solid #ededed;
    font-family: 'Maven Pro', sans-serif;
    font-size: 13px;
    color: #4a4a4a;
    padding: 120px 350px 30px 0;
    height: 300px;
}

如你所见,有余量:0自动;在其中一条线上,我希望将div放在屏幕中间,而不是当前显示的左侧。

任何帮助表示感谢...谢谢!

1 个答案:

答案 0 :(得分:1)

你有一个巨大的右边填充padding: 120px 350px 30px 0;,这样可以将它推到左边。

当你摆脱这个时,仍然向左移动,你可能在早期版本的IE中查看它,并且需要将text-align: center;添加到你的身体。