前端学习笔记day03 水晶球制作(盒子阴影)

1. 水晶球

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        div {
            width: 300px;
            height: 300px;
            background-color: pink;
            margin: 100px auto;
            background: url("../../images/sj2.jpg") no-repeat center top;
            background-size: cover;
            font-size: 20px;
            color: purple;
            text-align: center;
            line-height: 300px;
            border-radius: 50%;
            box-shadow: 57px 8px 60px rgba(255,255,255,0.4) inset, 3px 4px 16px rgba(0,0,0,0.7);

        }
    </style>
</head>
<body>
    <div>我是一个小猴子</div>
</body>
</html>

运行结果:

猜你喜欢

转载自www.cnblogs.com/xuanxuanlove/p/10049472.html