CSS固定定位实现右下角可关闭广告


代码:
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.adv {
        /*调整广告图位置*/
position: fixed;
right: 10px;
bottom: -20px;
        /*透明度 使得可以看见下面内容*/
opacity: 0.7;
}

.close {
      /*关闭按钮样式*/
position: relative;
top: -315px;
right: 50px;
background-color: transparent;
border: none;
font-size: 20px;
cursor: pointer;
}

.close:active {
outline: none;
}

广告图:

 




效果图:

 




					


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM