Blogger Information
Blog 17
fans 0
comment 0
visits 11532
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
固定定位小广告——1月15号
iL的博客
Original
607 people have browsed it

实例

<!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>

运行实例 »

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

 

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post