要求:
盒子阴影(0 1px 0 dimgrey insert, 0 1px 3px darkgrey)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta hthttps://img-mid.csdnimg.cn/release/static/image/mid/ask/175837237386159.png "#left")
tp-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width: 100px;
height: 100px;
box-shadow: 0px 0px 6px dimgrey inset, 0 0px 6px darkgrey;
}
</style>
</head>
<body>
<div class="box">
<div class="box-inner"></div>
</div>
</body>
</html>