box-shadow being cut off

前端 未结 6 1332
迷失自我
迷失自我 2021-02-05 02:05

While using CSS3\'s box-shadow I am having an issue I do not usually have.

The box shadow usually just bleeds over the div edges, but not on this one.

6条回答
  •  无人共我
    2021-02-05 03:03

    you can set this style img tag for show shadow-box correctly

    .img{
      margin:20px;
     -moz-box-shadow: 0 0 5px #555;
      -webkit-box-shadow: 0 0 5px #555;
      box-shadow: 0 0 5px #555;
     }
    

提交回复
热议问题