box-shadow 如何实现一边内阴影,其他三边外阴影?

就是有个需求一个div需要上边inset内阴影,其他三边外阴影,请问下应该怎么实现?
image.png

阅读 2.1k
2 个回答

你贴出来了效果不就很简单就能实现了吗……

<style>
  .box{
    width: 100px;
    height: 100px;
    box-shadow:  0 10px 12px gray,  0 10px 12px gray inset;
    margin:30px auto;
  }
</style>
<body>
  <div class="box"></div>
</body>

image.png


本文参与了SegmentFault 思否面试闯关挑战赛,欢迎正在阅读的你也加入。
推荐问题