CSS3 Box Shadow on Top, Left, and Right Only

前端 未结 10 1700
终归单人心
终归单人心 2020-12-15 03:24

Greetings,

I am trying to apply a CSS3 box shadow to only the top, right, and left of a DIV with a radius that matches the result of the following CSS (minus the bot

10条回答
  •  时光取名叫无心
    2020-12-15 03:43

    I found a way to cover the shadow with ":after", here is my code:

    #div:after {
        content:"";
        position:absolute;
        width:5px;
        background:#fff;
        height:38px;
        top:1px;
        right:-5px;
    }
    

提交回复
热议问题