Have an issue with box-shadow Inset bottom only

后端 未结 2 792
死守一世寂寞
死守一世寂寞 2021-01-30 08:16

I am using box-shadow to create an inner shadow...

box-shadow: inset 0 0 10px #000000;
-moz-box-shadow:    inset 0 0 10px #000000;
-webkit-box-shadow: inset 0 0          


        
2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-30 09:14

    Use a negative value for the fourth length which defines the spread distance. This is often overlooked, but supported by all major browsers. See this Fiddle for the result.

    div {
      background: red;
      height: 100px;
      width: 200px;
      -moz-box-shadow: inset 0 -10px 10px -10px #000000;
      -webkit-box-shadow: inset 0 -10px 10px -10px #000000;
      box-shadow: inset 0 -10px 10px -10px #000000;
    }

提交回复
热议问题