I have a problem with rounded borders and gradient in IE9. A gradient overflows a rounded border.
.cn_item:hover, .selected{ width:300px; border:1px solid #333333; cursor:pointer; position:relative; overflow:hidden; height:49px; color:#333333; padding:5px; margin:6px 5px 0px 0px; text-shadow:1px 1px 1px #000; background-image: -ms-linear-gradient(top, #DDDDDD 25%, #FF0000 5%); filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#666666'); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#666666')"; zoom: 1; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; }
I already use overflow:hidden; but nothing works. Any suggestions?
source share