我想是這樣的:如何調整內容面積動態CSS和JavaScript的沒有
- 藍色區域時,瀏覽器窗口大小調整與重新調整。
- 標題是可見的。
- 藍色區域開始於標題結束的位置(不在標題之後或之後)。
- 藍色區域在頁腳前結束。
- 藍色區域和頁腳之間存在5個黃色像素。
這可能只有CSS和HTML(沒有任何JavaScript)?
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8"/>
<title>Test</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
<style>
*{
margin:0px;
padding:0px;
}
header, nav, article, footer, address {
display: block;
}
header{
position:relative; height: 50px; background-color:#2b2b2b;
}
footer{
height: 50px;
width:100%;
bottom: 0px;
position: fixed;
background: red;
}
#explorer{
position:relative; bottom:55px;
}
#sections{
width: 100%; height: 100%; bottom: 55px; position:fixed; background: blue;
}
</style>
</head>
<body style="background-color:yellow">
<header >
<h1>Test</h1>
</header>
<div id="explorer" >
<div id="sections" >
</div>
</div>
<footer>
/* Footer Content */
</footer>
</body>
</html>
查看CSS媒體查詢...我知道它可以在窗口大小更改時更改。 – Peter 2011-02-19 00:21:55
@Peter - 感謝您的提示,但它不能解決此問題。 – Bonfocchi 2011-02-19 01:29:23