Skip to content Skip to sidebar Skip to footer

Rounded Corners Not Working In Ie9

As far as I am aware, IE9 should have CSS support for rounded corners. I have apparently coded my page in such a way as this does not occur in IE9 though - although it displays cor

Solution 1:

It's because you combine filter and border-radius for same element. Try to apply border-radius to one element, and filter to its child element instead.

Solution 2:

see this question regarding the meta tag and some other possible issues/process to eliminate: IE9 border-radius

Solution 3:

For IE9, you are correct it doesn't like the border radius and the filter combined. Here is what I followed and it worked perfectly in IE9, as well as all the other browsers.

https://github.com/bfintal/jQuery.IE9Gradius.js

Hope that helps!

Solution 4:

You only need to define one number for your border radius if you're using "bottom-left" and so on. By specifying two numbers IE9 may not interpret it correctly.

If you use the following, the first number is the top-left, second is top-right, third is bottom-right, and fourth is bottom-left.

    -moz-border-radius: 8px8px0px0px;
    -webkit-border-radius: 8px8px0px0px;
    -0-border-radius: 8px8px0px0px;
    border-radius: 8px8px0px0px;

Solution 5:

Making the border radius compatible to IE browsers, follow these steps:

  1. Open Setting option in IE.
  2. Go to compatibility and view setting.
  3. Uncheck "Display intranet sites in Compatibility view " as well as uncheck "Use microsoft compatibility list".

Post a Comment for "Rounded Corners Not Working In Ie9"