欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

慕课网跟练系列——定位和边距的区别&弹出层的简单实例

程序员文章站 2022-07-15 11:01:53
...

简单案例,所以用方块代替登录页面
出处:慕课网的前端教程

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>position</title>
    <style>
        *{
            margin:0;
            padding:0;
        }
        html,body{
            width:100%;
            height:100%;
        }
        .con{
            width:100%;
            height:4000px;
            background:#eee;
        }
        .opacity_{
            width:100%;
            height:100%;
            background:rgba(125, 125, 125, 0.5);
            position:fixed;
            left:0;
            top:0;
        }
        .login{
            width:360px;
            height:360px;
            background:#999;
            position:fixed;
            left:50%;
            top:50%;
            margin-left:-180px;
            margin-top:-180px;
        }
    </style>
</head>
<body>
    <div class="con"></div>
    <div class="opacity_"></div>
    <div class="login"></div>
</body>
</html>
相关标签: 慕课