Skip to content Skip to sidebar Skip to footer

Implementing Rounded Corners With Ie Fallback?

I am in a need of implementing rounded corners in IE. I am aware of the HTC approach using VML, but that's not an option because it complicates things (like when you have absolute

Solution 1:

Personally my favourite by far is the CSS3Pie project its simple, non-obstrusive and means that you can do nice CSS3 stuff without a bunch of separate hacks in IE's various versions.

Just to clarify, this means you can have border-radius, box-shadow, etc. in your CSS without the need to do ANY conditional comments.

This does require JavaScript to be enabled on the browser, but ol' Timmy sitting there with IE6 and no javascript isn't really expecting much internet love is he now?

Solution 2:

Ryan Thrash has a nice tutorial on Simple Rounded Corner CSS Boxes that supports IE as well as the rest of the browsers.

Solution 3:

Post a Comment for "Implementing Rounded Corners With Ie Fallback?"