6

首先,类似但从未回答过的问题:

垂直滚动基于百分比的高度-垂直边距-codepen-exampl

带有溢出的滚动条在 div 上自动和百分比高度

我在滚动网页的中心部分时遇到问题,而它的高度需要是自动的。

这是一个小提琴

标题需要始终位于顶部,这意味着我不希望正文变得大于 100%。

但是 div #messages 可以变得更大,并且该 div 需要自行滚动。

#messages 有一个 margin-bottom 为固定的底部 div 留出空间。

我尝试制作 div#messagesbox-sizing: border-box;制作它height:100%并填充以将其保持在适当的位置,但这是一个看起来非常讨厌的解决方案,并且滚动条是整个页面高度,而不仅仅是内部部分。

任何帮助将不胜感激。

4

2 回答 2

6

你想要这样的东西

或者也许 - 他的大哥..

纯 CSS 解决方案,不固定任何高度。

HTML:

<div class="Container">
    <div class="First">
    </div>
    <div class="Second">
        <div class="Content">
        </div>
    </div>
</div>

CSS:

*
{
    margin: 0;
    padding: 0;
}

html, body, .Container
{
    height: 100%;
}

    .Container:before
    {
        content: '';
        height: 100%;
        float: left;
    }

.First
{
    /*for demonstration only*/
    background-color: #bf5b5b;
}

.Second
{
    position: relative;
    z-index: 1;
    /*for demonstration only*/
    background-color: #6ea364;
}

    .Second:after
    {
        content: '';
        clear: both;
        display: block;
    }

.Content
{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
}
于 2013-10-01T14:56:20.703 回答
5

您可以尝试以下方法。

你的 HTML 是:

<div id="container">
    <div id="header">The header...</div>
    <div id="content">
        <div id="messages">
            <div class="message">example</div>
             ...
            <div class="message">example</div>
        </div>
        <div id="input">
            <div class="spacer">
                <input type="text" />
            </div>
        </div>
    </div>
</div>

应用以下 CSS:

html, body {
    height: 100%;
}
body {
    margin:0;
}
#header {
    background:#333;
    height: 50px;
    position: fixed;
    top: 0;
    width: 100%;
}
#content {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 45px;
    overflow-y: scroll;
}
#messages {
    overflow: auto;
}
#messages .message {
    height: 79px;
    background: #999;
    border-bottom: 1px solid #000;
}
#input {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height: 45px;
}
#input .spacer {
    padding: 5px;
}
#input input {
    width: 100%;
    height: 33px;
    font-size: 20px;
    line-height: 33px;
    border: 1px solid #333;
    text-indent: 5px;
    color: #222;
    margin: 0;
    padding: 0;
}

参见演示:http: //jsfiddle.net/audetwebdesign/5Y8gq/

首先,将htmlandbody标记设置为 100% 的高度,这允许您参考视口高度。

您希望使用#header将 固定在页面顶部position: fixed,类似于您的页脚#input

关键是使用绝对定位在#content页眉的下边缘和页脚的上边缘之间拉伸它,然后应用overflow-y: scroll以允许它滚动内容(消息列表)。

注释
块 的源代码#input可以放在#content块之外。

于 2013-10-01T14:55:59.313 回答