0

我正在创建一个中心区域为 800px 的网页。如果分辨率更大,“侧边栏”将以另一种颜色呈现。我有这个代码:

body {
  width: 800px;
  height: auto;
  ...
}

我希望当内容非常小时,中心区域一直延伸到页面的末尾。做这个的最好方式是什么?

4

1 回答 1

1

你唯一能做的就是这样的:

<style type="text/css">
  html, body, .container {
    height: 100%;
    width: 800px;
    margin: 0 auto;
  }
  .container {
    background: yellow;
  }
</style>

和...

<body>
  <div class="container">
    dewdewd
  </div>
</body>
于 2012-05-27T03:31:10.470 回答