2

我正在创建一个网站,其中基本设计由几个相互重叠的块组成,如下所示:

在此处输入图像描述

前三个 div 设置了高度和宽度,主区域也是固定宽度,整个区域在屏幕上水平居中。我希望主要区域扩展到屏幕底部,无论屏幕大小和比例如何,如果内容超出屏幕底部,则在其中使用滚动条。

我发现的问题是,要使用滚动条,您似乎需要一个绝对高度,所以我无法找到任何适合它并能够同时滚动内容的方法。

有任何想法吗?

4

3 回答 3

1

calc与 一起使用min-height

HTML

<div class="first block"></div>
<div class="second block"></div>
<div class="third block"></div>
<div class="main"></div>

CSS

html,body{
    height:100%;
    width:100%;
    padding:0;
    margin:0;
}

.block{
    width:100%;
    height:100px;
}

.first{
    background:red;
}

.second{
    background:blue;
}

.third{
    background:yellow;
}

.main{
    min-height: calc(100% - 300px);
    width:100%;
    background:green;
}

JSFiddle

caniuse calc

于 2013-09-10T08:21:33.633 回答
1

这是执行此操作的一种方法。我知道可能有太多仅用于页面外观的 div,使其不是 100% 语义化的。无论如何,给你:

http://jsfiddle.net/vSt3Z/

<div class="one">One</div>
<div class="two">Two</div>
<div class="three">Three</div>
<div class="content">
    <div class="inner">
        <div class="scroller">
            Content
        </div>
    </div>
</div>

和CSS:

.one, .two, .three {
    height: 40px;
    margin: 0;
    padding: 0;
}

.content {
    background: yellowgreen;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding-top: 120px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;

}

.content .inner {
     height: 100%;
    overflow-y: scroll;
}

.content .inner .scroller {
    height: 1200px;
}

请忽略这个:

* {
    margin: 0;
    padding: 0;
}

它只是为了从 jsfiddle 中删除烦人的默认填充

于 2013-09-10T08:18:15.733 回答
0

在我看来,这是最简单的方法:

演示:http: //jsfiddle.net/ZPU5Z/

这不仅仅在主要部分上放置滚动条,#content而是在整个文档上放置滚动条。除非您有真正令人信服的理由这样做,否则我建议保持简单(因此也高度兼容!)。

HTML

<div id="fixed-header">
    <div id="header">Header</div>
    <div id="bar1">Bar 1</div>
    <div id="bar2">Bar 2</div>
</div>
<div id="content">
        Main area
</div>

CSS

* {
    margin: 0;
    padding: 0;
    border: 0;
    color: white;
}

body {
    background-color: blue;
}

#fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
}

#header {
    background-color: black;
    text-transform: uppercase;
    height: 50px;
}

#bar1 {
    height: 25px;
    background-color: red;
}
#bar2 {
    height: 25px;
    background-color: green;
}

#content {
    padding-top: 100px; /* header + bar1 + bar2 */
}
于 2013-09-10T08:25:45.210 回答