<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.box-card {
height: 314px;
width: 50%;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 2px rgba(10, 16, 20, .24), 0 0 2px rgba(10, 16, 20, .12);
box-sizing: border-box;
transition: box-shadow .5s;
max-width: 340px;
min-width: 262px;
margin: 24px 8px;
padding-bottom: 48px;
position: relative;
}
.box-card:hover {
box-shadow: 0 8px 8px rgba(10, 16, 20, .24), 0 0 8px rgba(10, 16, 20, .12);
text-decoration: none;
}
</style>
</head>
<body>
<div class='box-card'>盒子阴影</div>
</body>
</html>
好看的盒子阴影
最新推荐文章于 2024-09-26 15:03:53 发布