css 透明气泡效果

css

body {
    background:#333333;
}
.login-card {
    text-align:center;
    width:430px;
    height:430px;
    margin:auto;
    margin-top:15vh;
    padding:30px 20px;
    border:none;
    border-radius:10px;
    background-color:hsla(0,0%,100%,.1);
    box-shadow:inset 0 0 15px 0 #fff;
}
}

html代码

<div class="login-card"></div>
原文地址:https://www.cnblogs.com/sxdpanda/p/13272673.html