HTML:在中间创建一个列

时间:2014-05-17 09:30:30

标签: html css

我想创建一个具有固定背景的网站(我已经知道了),并且在中间的背景前面是我的东西,比如这个网站:http://www.nexusmods.com/skyrim/?我搜索了整个互联网但我找不到任何东西。我已经在源头搜索过了。有人能帮我吗?因为我的英语不好,我很瑞士。请尽快纠正我。

1 个答案:

答案 0 :(得分:1)

您正在寻找的是设置主要内容的固定宽度,然后设置左右自动边距,使其居中。

.content {
    width:600px; //set your desire width here
    background-color:#ffffaa; // color is just there to visualize
    margin-left:auto;
    margin-right:auto;
}
HTML中的

<body>
  <!-- header -->

  <!-- main content -->
  <div class="content">
     This is the main content box
  </div>

  <!-- footer -->

</body>

希望这会有所帮助。
暂存器,