6

我正在尝试创建这样的东西:

http://jsfiddle.net/S6FUQ/

HTML是:

<div id="container">
    <header></header>
    <main>
        <section class="half"></section>
        <section class="half"></section>
    </main>
</div>

而 CSS 是:

* {
    margin: 0; padding: 0;
}
html, body, #container {
    height: 100%;
}
header {
    height: 50px;
    background: gray;
}
main {
    height: 100%;
    background: green;
}
.half {
    height: 50%;
}
.half:first-child {
    background: blue;
}
.half:last-child {
    background: yellow;
}

在其中,我在顶部有一条细丝带,我想将屏幕的其余部分分成两个相等的部分,但我不希望出现垂直滚动条。

我试过margin-bottom: 50px;main,但没有用。我该怎么办?

4

3 回答 3

16

“main”的高度应该是 100% - 50px。这是小提琴

main{height: calc(100% - 50px);}
于 2013-10-08T04:55:00.590 回答
4

要使其在旧浏览器上工作,您可以使用绝对定位。

演示

#container {
    position: relative;
}
main {
    position: absolute;
    width: 100%;
    top: 50px;
    bottom: 0;
    background: green;
}
于 2013-10-31T02:39:09.477 回答
3

您已经在使用 % 来设置高度......为什么不再次使用它来解决您的问题?

header {
    height: 10%;
    background: gray;
    max-height:50px; //this will ensure your header will never go bigger than 50px
}
main {
    height: 90%;
    background: green;
}

PS:只有当浏览器小于 500 像素时,标题才会小于 50 像素(仅在某些横向移动设备中)

例子

于 2013-10-08T05:03:53.063 回答