Header div 停留在顶部,垂直滚动 div 下面仅附加滚动条 body
Header div stays at top, vertical scrolling div below with scrollbar only attached body
这里我使用 bootstrap class 作为 sticky top
header.
header.js
<header className="header sticky-top">HEADER</header>
样式表
header {
overflow: hidden;
padding: 20px 10px;
display: inline-flex;
width: 100%;
height: fit-content;
background-color: blue;
}
body {
margin: 0;
height: 100vh;
overflow:auto;
scroll-behavior: smooth;
}
这就是我想要实现的目标。
______________________
|_______header_______|
| |*|
| Container Div |*|
| |*|
| |*|
| |*|
| |*|
| |*|
----------------------
* = scrollbar
这是要处理的示例项目
demo code sandbox
这里我使用 bootstrap class 作为 sticky top
header.
header.js
<header className="header sticky-top">HEADER</header>
样式表
header {
overflow: hidden;
padding: 20px 10px;
display: inline-flex;
width: 100%;
height: fit-content;
background-color: blue;
}
body {
margin: 0;
height: 100vh;
overflow:auto;
scroll-behavior: smooth;
}
这就是我想要实现的目标。
______________________
|_______header_______|
| |*|
| Container Div |*|
| |*|
| |*|
| |*|
| |*|
| |*|
----------------------
* = scrollbar
这是要处理的示例项目 demo code sandbox