博客列表 >7.CSS固定定位制作广告位-2019年01月15号

7.CSS固定定位制作广告位-2019年01月15号

万物皆对象
万物皆对象原创
2019年01月25日 14:39:04705浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>固定定位制作广告位</title>
    <style>
        body{
            background: lightcoral;
            height: 2000px;
        }
        .ad{
            width: 350px;
            height: 250px;
            background: lightcyan;
            position: fixed; /* 固定定位 */
            right: 0;
            bottom: 0;
        }
        .ad button{
            float: right;
            border: none;
        }
    </style>
</head>
<body>
    <h1>固定定位制作广告位</h1>
    <div class="ad">
        <button onclick="this.parentNode.style.display = 'none';">关闭</button>
        <h1>学而不思则罔,思而不学则殆</h1>
        <h2>知识改变命运</h2>
    </div>
</body>
</html>

运行实例 »

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

666.png

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