博客列表 >4.CSS固定定位制作广告位--2019年1月15日作业

4.CSS固定定位制作广告位--2019年1月15日作业

连界现代周伟的博客
连界现代周伟的博客原创
2019年01月18日 18:48:33631浏览

实例(CSS固定定位制作广告HTML代码)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>固定定位-广告位设计</title>
    <link rel="stylesheet" href="static/css/gudingdingwei.css">
        <style>
          body {
              background-color:lightgray;
              height: 2000px;
         }

          .ads {
               width: 320px;
               height: 200px;
               background-color: aqua;

               position: fixed;
               right: 0;
               bottom: 0;
          }

           .ads button {
                float: right;
                margin-right: 15px;
           }
        </style>
</head>
<body>
    <h1>实现广告位</h1>
    <div class="ads">
        <button onclick="this.parentNode.style.display = 'none'">关闭</button>
        <h2>广告牌招商:电话123456</h2>
        <h1>招商进行中...</h1>
    </div>
</body>
</html>


运行实例 »

点击 "运行实例" 按钮查看在线实例


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议