CSS: What's a good way to create a raised box effect?

前端 未结 5 1210
你的背包
你的背包 2020-12-30 08:43

That is, the left and bottom borders of the element need to give a 3d effect of it popping out. Is there a good, purely-CSS way to accomplish this effect?

5条回答
  •  一整个雨季
    2020-12-30 08:58

    You can base your solution on this:

    -webkit-box-shadow: 0 0 10px rgb(0,0,0);
    -moz-box-shadow: 0 0 10px rgb(0,0,0);
    

提交回复
热议问题