2つのメインdiv、ヘッダーとdivに含まれるスクロールリストがあります。ヘッダーを常にページの上部に残し、スクロールリストを下部に残しておく必要があります。スクロールバーは、ページ全体ではなくスクロールdivにアタッチする必要があります。つまり、スクロールバーはヘッダーの右側に表示されず、スクロールdivだけに表示されます。
これは私が達成しようとしているものです:
______________________
|_______header_______|
| |*|
| Container Div |*|
| |*|
| |*|
| |*|
| |*|
| |*|
----------------------
* = scrollbar
レイアウトは流動的である必要があり、ウィンドウが垂直に引き伸ばされている場合、コンテナdivとそのスクロールバーのみが長くなるはずです。
ヘッダーを配置したくないposition: fixed;
その場合、スクロールバーはその下ではなくその右側にあります。
HTML:
<div class="header">This is the header</div>
<div class="content">This is the content</div>
CSS:
.header
{
height:50px;
}
.content
{
position:absolute;
top: 50px;
left:0px;
right:0px;
bottom:0px;
overflow-y:scroll;
}
フレックスマジックを見つけました。
ここ は、固定ヘッダーとスクロール可能なコンテンツの実行方法の例です。コード:
<!DOCTYPE html>
<html style="height: 100%">
<head>
<meta charset=utf-8 />
<title>Holy Grail</title>
<!-- Reset browser defaults -->
<link rel="stylesheet" href="reset.css">
</head>
<body style="display: flex; height: 100%; flex-direction: column">
<div>HEADER<br/>------------
</div>
<div style="flex: 1; overflow: auto">
CONTENT - START<br/>
<script>
for (var i=0 ; i<1000 ; ++i) {
document.write(" Very long content!");
}
</script>
<br/>CONTENT - END
</div>
</body>
</html>
*フレックスソリューションの利点は、コンテンツがレイアウトの他の部分から独立していることです。たとえば、コンテンツはヘッダーの高さを知る必要はありません。
Holy Grail の完全な実装(ヘッダー、フッター、ナビゲーション、サイド、およびコンテンツ)については、フレックスディスプレイを使用して、 here に移動します。
デモ です。つかいます position:fixed; top:0; left:0;
ヘッダーは常に一番上にあります。
#header {
background:red;
height:50px;
width:100%;
position:fixed;
top:0;
left:0;
}.scroller {
height:300px;
overflow:scroll;
}
あなたはjsを使用してボディdivのより良い高さを取得する必要があります
<html><body>
<div id="head" style="height:50px; width=100%; font-size:50px;">This is head</div>
<div id="body" style="height:700px; font-size:100px; white-space:pre-wrap; overflow:scroll;">
This is body
T
h
i
s
i
s
b
o
d
y
</div>
</body></html>