源码论坛,商业源码下载,尽在锦尚中国商业源码论坛

标题: DIV始终固定在网页右下角位置的css方法 [打印本页]

作者: 洪七公    时间: 2022-6-20 23:33
标题: DIV始终固定在网页右下角位置的css方法

刚才发了一个js的固定div的方式,这里直接给一个css样式的方法,还是非常方便的,根据个人喜好选择!

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  5.         <title>CSS DIV始终固定在网页右下角位置</title>
  6.         <style type="text/css">
  7.             html{
  8.                 position: absolute;
  9.             }
  10.             body {
  11.                 margin: 0;
  12.                 padding: 0 10px 0 10px;
  13.                 height: 100%;
  14.                 overflow: auto;
  15.                 font-size: 12px;
  16.             }
  17.             #wrap {
  18.                 position: absolute;
  19.                 display: block;
  20.                 bottom: 0px;
  21.                 right: 1px !important;
  22.                 right: 18px;
  23.                 width: 300px;
  24.                 height:200px;
  25.                 line-height: 30px;
  26.                 position: fixed;
  27.                 border: 1px solid #fff;
  28.                 text-align: center;
  29.                 color: #fff;
  30.                 background: #efefef;
  31.             }
  32.         </style>
  33.     </head>
  34.     <body>
  35.         <div style="height: 2000px;"></div>
  36.         <div id="wrap">
  37.             <a target="_blank" href="http://www.what21.com">IT小奋斗</a>
  38.         </div>
  39.     </body>
  40. </html>
复制代码





欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/) Powered by Discuz! X3.3