如何使内容可滚动,而不是页眉和页脚?

时间:2012-10-28 01:24:30

标签: html css

这个问题可能与header and footer fixed, content scrollableFixed header, footer with scrollable content重复,如果不是一个细节,这对我来说非常重要 - 我不想为内容指定固定的高度和宽度。

http://jsfiddle.net/mark69_fnd/PWRDa/包含一个带有虚拟数据的真实表单,演示了这个问题 - 调整窗口大小会使滚动条显示,但是在页面上,而不是在表单上。在当前布局中,菜单栏和状态栏被滚动到视图之外,我希望它们保持固定,同时滚动表单数据。

请不要提供绝对宽度和/或高度的解决方案。我更喜欢在javascript中计算它们,而不是将它们烘焙到CSS中,除非它是100%。当然,最好使用纯HTML / CSS解决方案。

这是CSS:

html, body, .yui3-app-views {
    height: 100%;
    width: 100%;
}

.container {
    position: relative; /* needed for footer positioning*/
    margin: 0 auto;
    height: auto;
    min-height: 100%;
    background-color: #eee;
}

.content {
    background-color: #ddd;
    padding: 0em 0em 2em; /* bottom padding for footer */
    overflow: auto;
}

#footer {
    position: absolute;
    width: 100%;
    bottom: 0; /* stick to bottom */
    background-color: #ccc;
}

#status {
    border: solid 1px #000000;
}

#status .error {
    color: red;
    font-weight: bold;
}

/* ------------------------------------------------------------------------------------*/
.char {
    display: inline-block;
    vertical-align: top;
}

.line {
    white-space: nowrap;
}

/* --------------------------------- fieldset and legend ------------------------------*/
.fieldset {
    border: 2px groove threedface;
    margin-top: 1em;
}

.fakeFieldset {
    padding: 2px;
}

.fieldset > div.legend:first-child {
    display: inline-block;
    text-align: left;
    margin-left: 10px;
    background: #ddd;
    position: relative;
    top: -0.7em;
}

.merge-bottom {
    margin-bottom: -2px;
}

/* ------------------------------------ Forms ------------------------------*/

form div {
    white-space: nowrap;
}

form select, form input {
    margin: 2px;
    border: 1px groove;
}

form label:not(.same-line) {
    width: 8em;
    text-align: right;
    display: inline-block
}

#cust-balance {
    text-align: center;
}

.ccExpDate {
    width: 2em;
}

#cust-salutation {
    width: 4em;
}

.postalCode {
    width: 7em;
}

#cust-ccAddress {
    width: 20em;
}
​

1 个答案:

答案 0 :(得分:2)

//更新了asker的输入。

This效果很好。我的宽度设置为100%,但当然你可以在JS中做到这一点。

您需要提供页眉和页脚position:fixed

我还在.content div中添加了一些填充,以便为顶部标题腾出空间。

如下所示:

html, body, .yui3-app-views {
    height: 100%;
    width: 100%;
}

.content {
    background-color: #ddd;
    padding: 2em 0em; /* padding for footer and header */
}

.menubar {
     position: fixed;
     top: 0px;
     width: 100%;
     z-index:1;
}

#footer {
    position: fixed;
    width: 100%;
    bottom: 0; /* stick to bottom */
    background-color: #ccc;
}