博客列表 >固定定位小广告——1月15号

固定定位小广告——1月15号

iL的博客
iL的博客原创
2019年01月23日 17:57:26606浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>遮罩案例</title>
    <!-- <link rel="stylesheet" href="css/demo04.css"> -->
    <style>
        /* 浏览器边距清零 */
*{
    margin: 0;
    padding: 0;
}

/* 给body添加样式 */
body{
    width: 100%;
    height: 3000px;

    background-color: beige;
}

.abs{
    width: 300px;
    height: 200px;
    background-color:pink;


    /* 使用绝对定位 */
    position: fixed;

    /* 固定到右下角 */
    right: 0px;
    bottom:0px;
}

.abs button{
    /* 给按钮设定位置 */
    float:right;
    margin-right:5px;
}
    </style>
   
</head>
<body>
    <div class="abs">
        <!-- 创建关闭按钮 -->
            <button 
            onclick="this.parentNode.style.display='none'">关闭
                </button>
        <h3>php中文网2019火爆进行中......</h3>

    </div>
</body>
</html>

运行实例 »

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

 

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