我正在建立响应式网站。我不想在 px 中设置默认高度,但我想要这样的东西。这将只是布局的顶部。例如prowly.com。
还有我的小提琴:
html, body {
margin: 0;
padding:0;
}
div#handler {
width: 100%;
height: 110%;
display:block;
}
div#content {
width: 100%;
height:100%;
background: red;
}
div#content2 {
width: 100%;
height: 10%;
background: blue;
}
HTML
<body>
<div id="handler">
<div id="content">I want to 100% height of browser</div>
<div id="content2">I want 10% of height browser</div>
</div>
</body>
附言。正如我所看到的,Safari iPhone 和 Opera Mobile 上 100% 的高度都是错误的,所以我不知道该怎么办。当然我可以使用 JS 但我想知道还有其他方法吗?