回到顶部-锚点

Posted meiqiyuanzi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回到顶部-锚点相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>

<head>
  <style>
    * {
      margin: 0;
      padding: 0;
    }
    
    .content {
      width: 100%;
      height: 2000px;
      background-color: gray;
    }
    
    .dw {
      position: fixed;
      width: 100px;
      height: 100px;
      color: #fff;
      right: 50px;
      bottom: 100px;
      background-color: blueviolet;
      line-height: 100px;
      text-align: center;
    }
  </style>
</head>

<body>
  <div class="content" id="top">
    顶部
    <a href="#top">
      <div class="dw">回到顶部</div>
    </a>
  </div>
</body>

</html>

 

以上是关于回到顶部-锚点的主要内容,如果未能解决你的问题,请参考以下文章

锚点绝对定位---回到顶部

js回到顶部------转载

一个回到顶部的锚点

回到顶部的写法

5种回到顶部的写法

回到顶部-锚点