How to make shadow on border-bottom?

前端 未结 6 1920
不知归路
不知归路 2020-12-28 11:56

I need to apply the border shadow on border-bottom by CSS3. I just want to apply CSS3 shadow on bottom. Is this possible?

6条回答
  •  春和景丽
    2020-12-28 12:32

    The issue is shadow coming out the side of the containing div. In order to avoid this, the blur value must equal the absolute value of the spread value.

    div {
      -webkit-box-shadow: 0 4px 6px -6px #222;
      -moz-box-shadow: 0 4px 6px -6px #222;
      box-shadow: 0 4px 6px -6px #222;
    }
    wefwefwef

    covered in depth here

提交回复
热议问题