Box-shadow and border-radius bug in Chrome

后端 未结 9 1677
盖世英雄少女心
盖世英雄少女心 2020-12-13 09:46

I\'ve been experimenting with CSS3 and found something strange. Heres\'s the part of DIV style:

border:#446429 solid 1px;
border-radius:15px;
-moz-border-rad         


        
9条回答
  •  暖寄归人
    2020-12-13 10:19

    Using negative values has solved the problem for me.

    -webkit-border-radius:10px;
    -webkit-box-shadow: -1px -1px 2px #CCC;
    

提交回复
热议问题