基本上,我想显示一个覆盖页面上所有内容的覆盖 div,包括滚动条。
固定元素是否可以出现在页面的滚动条上方?我尝试将滚动条的 z-index 设置为 -1,但显然不起作用。
基本上,我想显示一个覆盖页面上所有内容的覆盖 div,包括滚动条。
固定元素是否可以出现在页面的滚动条上方?我尝试将滚动条的 z-index 设置为 -1,但显然不起作用。
这是不可能的,但一个简单的替代方法是关闭 body 元素上的滚动条并将它们引入到内部元素中。
CSS:
/* these three elements are sized to fit the screen */
html, body, .content-wrapper {
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
overflow-y: hidden; /* no scrollbars on the body */
}
/* this element gets the scrollbars */
.content-wrapper {
overflow-y: auto;
}
html:
<html>
<body>
<div class='content-wrapper'>
<!-- put your content here -->
</div>
</body>
</html>
现在您的页面看起来与以前完全相同,但您可以将元素放在滚动条的顶部。
这是一个例子。