Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Border-Radius

I think border-radius is used with IE9 and up or in other browsers. What if , if we use border-radius for developing the webpage and if some one try opening it in IE8 and webpage may not appear as expected. How to make sure on this?

6 Answers

you may use Modernizr library to get the browser support

Check out CSS3 Pie.

I'm sorry, I'm not sure how to use the libraries. do we have to video on that that I can go through

Documentation for CSS3 Pie. It's fairly straightforward.

it should be easy, you just include the library in your HTML and it will add the necessary classes that you can use in your Stylesheet

http://caniuse.com/#feat=border-radius here is a table of browsers that support the border-radius property. If the browser doesn't support the css rule, it behaves as if the rule doesn't exist.

In most cases you shouldn't use polyfills for decorative design elements. Instead, you should embrace progressive enhancement.

Remember a website doesn't have to look the same in every browser.

http://blog.berndtgroup.net/?p=105