css 将div固定在页面顶部不随页面滑动
要使用CSS将div
固定在页面顶部并且不随着页面滑动,可以使用position: fixed;
属性。这样设置后,div
将相对于视口固定,而不是文档可滚动区域。
下面是一个简单的例子:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fixed Div Example</title>
<style>
.fixed-top {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
</style>
</head>
<body>
<div class="fixed-top">
我在顶部固定不动!
</div>
<!-- 页面的其他内容 -->
</body>
</html>
在这个例子中,.fixed-top
类应用于一个div
,使其固定在页面的顶部。无论页面如何滚动,这个div
都会保持在视口的顶部。
评论已关闭