Reputation: 37
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:
How do I fix this?
Upvotes: 1
Views: 474
Reputation: 66
Change the IE specific value by 1px,
border-radius: 4px; (instead of 3px)
Upvotes: 0
Reputation: 41832
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.
Upvotes: 2