1

This CSS produce different results in latest browsers:

input {
    border:1px solid #ccc;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

The radius size in IE is smaller:

enter image description here

How do I fix this?

Wladimir Palant
  • 55,537
  • 12
  • 95
  • 123
Sergei
  • 37
  • 6

2 Answers2

2

The versions of IE till 8.0 doesnot support Border-radius as far as i know. So I used transparent PNG images which I have created instead of Div's which needs border-radius and also it solved the browser compatibility issues.

EDIT For IE9: you may be using quirks mode that's why it is not compatible.

Community
  • 1
  • 1
Mr_Green
  • 39,139
  • 43
  • 154
  • 250
  • The OP tagged his question with "IE9". IE9 supports `border-radius`. See [quirks mode](http://www.quirksmode.org/css/contents.html). – Cat Sep 20 '12 at 04:20
0

Change the IE specific value by 1px,

border-radius: 4px; (instead of 3px)

glenderson
  • 66
  • 1
  • 2