15_阴影

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>

        div{
            width: 100px;
            height: 100px;
            border: 10px solid red;
            box-shadow:10px 10px 100px red ;
        }
        img{
            border-radius: 50px ;
            box-shadow:10px 10px 100px red ;
        }
    </style>
</head>
<body>
<div></div>
<img src="images/1.png" alt="">
</body>
</html>

结果展示

 

posted @ 2022-08-05 19:25  tuyin  阅读(27)  评论(0)    收藏  举报