<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css固定定位</title>
<style>
#back{
width: 100px;
height: 100px;
background-color: #FF6500;
text-align: center;
line-height: 100px;(line-height=height垂直居中)
position: fixed;(固定定位)
bottom: 20px;
right: 20px;
z-index: 1000;(使目标悬浮在界面上,置于上层,数字可调整)
}
</style>
</head>
<body>
<div style="height: 1000px">
<div id="back">
返回页面顶部
</div>
</div>
</body>
</html>
去除#back中 position: fixed;(固定定位)
bottom: 20px;
right: 20px;
效果为