<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.wrap {
width: 500px;
height: 500px;
overflow: auto;
}
.content {
width: 5000px;
height: 5000px;
background: gray;
position: relative;
}
.fixed {
width: 50px;
height: 50px;
background: red;
position: absolute;
right: 0;
top: 0;
}
</style>
</head>
<body>
<div class="wrap">
<div class="content">
<div class="fixed"></div>
</div>
</div>
</body>
</html>
我想让.fixed
永远都相对.content
在右上角显示,即使滚动条滚动也不变,该如何实现?
现在的写法只能定位到滚动条的最右侧的位置~
或者是其他定位方式也行,flex? 还是有什么思路?
可以给fixed设置
position: sticky;
,不过需要注意,sticky特性有点特殊,如果要让它在右侧,需要加上float: right;