CSS3 盒阴影

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>阴影</title>
    <style>
        div {
            width: 300px;
            height: 100px;
            background-color: yellow;
            /*  {box-shadow:X轴偏移量 Y轴偏移量 阴影模糊半径 阴影扩展半径 阴影颜色 投影方式 } */
            box-shadow: 10px 10px 5px #888888; 
        }
    </style>
</head>

<body>

    <div>这是一个带阴影的div</div>

</body>

</html>

image

posted @ 2022-05-01 21:11  wjxuriel  阅读(29)  评论(0)    收藏  举报