CSS中心问题

时间:2011-11-10 20:24:21

标签: html css center

在我的网站http://morxmedia.com/上放大#container会失去导航的中心位置。我有很多css的经验,我无法弄清楚如何解决这个问题。 有任何想法吗? enter image description here

2 个答案:

答案 0 :(得分:3)

我认为你可能不得不使用这个技巧:

<div id="wrapper">
    <div id="content">
    </div>
</div>

css ---

.wrapper {
    float: left;
    position: relative;
    left: 50%;
}

.content {
    float: left;
    position: relative;
    right: 50%;
}

* 确保您的内容不会出现自动边距。如果您有边距,请使用实际值。中心不再需要汽车。

答案 1 :(得分:0)

我想通了.. 我只是设置宽度为1100像素到宽度的主横幅:100%并将背景图像设置为中心。 然后我使标题宽度与内容宽度相同。