IE9 border-radius and background gradient bleeding

前端 未结 17 771
野的像风
野的像风 2020-11-27 10:11

IE9 is apparently able to handle rounded corners by using the CSS3 standard definition of border-radius.

What about support for border radius and

17条回答
  •  攒了一身酷
    2020-11-27 10:46

    I decided to disable IE9 from rounding corners to workaround this bug. It's clean, easy and generic usable.

    {
    border-radius:10px;
    border-radius:0px \0/;
    background:linear-gradient(top , #ffeecc, #ff8800);
    /* ... (-moz -ms,-o, -webkit) gradients */    
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffeecc,endColorstr=#ff8800);
    }
    

提交回复
热议问题