两列不适合带有垂直滚动条的容器

时间:2012-07-06 14:56:55

标签: html css two-column-layout

我有一个两列布局,在调整时停止工作以摆脱身体上的双滚动条。现在我有一个滚动条包裹,这是我想要的,但内容以某种方式与滚动条的宽度重叠。

html, body {
  margin:0;
  padding:0;
  font: 12px Geneva, Verdana, sans-serif;
  color: #1e1f21;
  vertical-align: top;
  height: 100%
}

body {
  background: #fff url(../esimages/cubes.png) no-repeat left bottom fixed;
}

#wrap {
  background: #f5f5f5;
  margin: 0 auto;
  width: 960px;
  height: 100%;
}

#logo {
  height: 75px;
  width: 100%;
  background: #1e1f21;
  padding: 10px 0px 5px 0px;
}

#header {
  height: 30px;
  width: 100%;
  background: #1e1f21;
  margin:0px;
  padding: 0px;
}

#container {
  overflow: hidden;
  height: auto;
  background: #f5f5f5;
  width: 100%;
  margin: 0px;
  padding: 0px;
  text-align: left;
}

#content1 {
  min-height: 100%;
  background: #f5f5f5;
  padding: 20px 20px 20px 40px;
  margin: 0
}

#content2 {
  float: right;
  width: 290px;
  min-height: 100%;
  background: #f5f5f5;
  padding: 20px 0px 20px 10px;
  margin: 0
}

#footer {
  clear: both;
  padding: 10px;
  background: #1e1f21;
  text-align: center;
  line-height: 200%;
  font-size: 10px;
}

两个内容框并不像它们应该并排放在容器中。我已尝试使用不同的缩小固定宽度的content1但它完全没有任何区别,无论如何,列宽保持不变。我正在撕扯我的头发,因为它不合逻辑!

<body>
  <div id="wrap">
    <div id="logo"></div>
    <div id="header"></div>
    <div id="container">
      <div id="content2">
        <div class="box0">
          <ul>
            <li></li>
          </ul>
        </div>
      </div>
      <div id="content1">
        <p></p>
      </div>
    </div> 

<div id="footer" align="center"></div>

1 个答案:

答案 0 :(得分:1)

您需要在float: left上加上宽度和content1。另请注意,总宽度+填充不能超过容器的宽度。

此外,margin: 0 content1之后您错过了分号