回到顶部

固定定位

固定定位
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>固定定位</title>
    <style type="text/css">
        body {
            height: 3000px;
        }
        
        #top {
            width: 50px;
            height: 70px;
            line-height: 70px;
            text-align: center;
            background: lightblue;
            position: fixed;
            right: 1px;
            bottom: 30%;
        }
    </style>
</head>

<body>
    <div id="title">固定定位</div>
    <div id="top"><a href="#title">回顶部</a></div>
</body>

</html>

  

posted @ 2022-03-14 08:53  33的男孩  阅读(55)  评论(0编辑  收藏  举报