css - Border radius effect with IE9 and a solid border -
i noticed address link styled button not show radius in ie9 when using css below:
a.btn { background: #f00; color:#333; font-size:12px; padding: 3px 4px 3px 4px; border:1px solid #444; border-radius:3px 3px 3px 3px; -moz-border-radius:3px; -webkit-border-radius:3px; cursor:default; }
when remove border:1px solid #444; nice curved border appears.
is bug ie? in firefox works good. else seen this? seems happens when border-radius set low value. know not important on scale of things i'm interested hear if knows why radius doesn't show.
Comments
Post a Comment