**box-shadow** :为元素添加阴影效果,** **
    box-shadow: h-shadow v-shadow blur spread color inset;
    值 | 说明
    h-shadow | 必需的。水平阴影的位置。允许负值
    v-shadow | 必需的。垂直阴影的位置。允许负值
    blur | 可选。模糊距离 值越大,模糊面积越大,阴影就越大越淡。 不能为负值。默认为0
    spread | 可选。阴影的大小 取正值时,阴影扩大;取负值时,阴影收缩。默认为0,此时阴影与元素同样大。
    color | 可选。阴影的颜色
    inset | 可选。从外层的阴影(开始时)改变阴影内侧阴影 inset为内阴影

    1. /* x偏移量 | y偏移量 | 阴影模糊半径 | 阴影扩散半径 | 阴影颜色 */
    2. box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);

    box-shadow可以填入多组值
    示例1

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <title>Document</title>
    7. <style>
    8. body{
    9. background: #000;
    10. }
    11. .box{
    12. width: 300px;
    13. height: 300px;
    14. position: fixed;
    15. left: calc(50% - 150px);
    16. top: calc(50% - 150px);
    17. border-radius: 50%;
    18. box-shadow: inset 0px 0px 50px #fff,
    19. inset 10px 0px 80px #f0f,
    20. inset -10px 0px 80px #0ff,
    21. inset 10px 0px 130px #f0f,
    22. inset -10px 0px 130px #0ff,
    23. 0px 0px 50px #fff,
    24. -10px 0px 80px #f0f,
    25. 10px 0px 80px #0ff
    26. ;
    27. }
    28. </style>
    29. </head>
    30. <body>
    31. <div class="box"></div>
    32. </body>
    33. </html>

    代码执行效果
    image.png
    示例2

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <title>Document</title>
    7. <style>
    8. *{
    9. margin: 0;
    10. padding: 0;
    11. }
    12. body{
    13. background: #000;
    14. }
    15. .box{
    16. width: 50px;
    17. height: 50px;
    18. border-radius: 50%;
    19. position: absolute;
    20. left: calc(50% - 25px);
    21. top: calc(50% - 25px);
    22. background: #fff;
    23. box-shadow: 0px 0px 50px 50px #fff ,
    24. 0px 0px 130px 120px #ff0;
    25. }
    26. </style>
    27. </head>
    28. <body>
    29. <div class="box"></div>
    30. </body>
    31. </html>

    代码执行效果图
    image.png