css3四周阴影效果

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style type="text/css">
			body {
				text-align: center;
				padding: 20px;
			}
			.shadow {
				width: 200px;
				height: 123.6px;
				background-color: lawngreen;
				display: inline-block;
				border-radius: 5px;
				box-shadow: darkgrey 0px 0px 30px 5px;
			}
		</style>
	</head>
	<body>
		<div class="shadow">
			
		</div>
	</body>
</html>

发布了55 篇原创文章 · 获赞 17 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/XuHang666/article/details/93599329