源码论坛,商业源码下载,尽在锦尚中国商业源码论坛
标题:
DIV始终固定在网页右下角位置的css方法
[打印本页]
作者:
洪七公
时间:
2022-6-20 23:33
标题:
DIV始终固定在网页右下角位置的css方法
刚才发了一个js的固定div的方式,这里直接给一个css样式的方法,还是非常方便的,根据个人喜好选择!
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>CSS DIV始终固定在网页右下角位置</title>
<style type="text/css">
html{
position: absolute;
}
body {
margin: 0;
padding: 0 10px 0 10px;
height: 100%;
overflow: auto;
font-size: 12px;
}
#wrap {
position: absolute;
display: block;
bottom: 0px;
right: 1px !important;
right: 18px;
width: 300px;
height:200px;
line-height: 30px;
position: fixed;
border: 1px solid #fff;
text-align: center;
color: #fff;
background: #efefef;
}
</style>
</head>
<body>
<div style="height: 2000px;"></div>
<div id="wrap">
<a target="_blank" href="http://www.what21.com">IT小奋斗</a>
</div>
</body>
</html>
复制代码
欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/)
Powered by Discuz! X3.3