I designed a few web pages using some CSS3. It looks good in Google Chrome, but the styles become clumsy in Internet Explorer. I have two questions regarding these:
Can I do something like this : I can make two style sheets and depending the browser of the user load the appropriate version. Let me make it more clear:
if browser is Internet Explorer
use stylesheet1.css
else
use stylesheet2.css
My main problem is with the usage of border-radius property. Is there some way to avoid this directly.
In your HTML/header do the following:
You can also break it down further:
Or many other combinations:
The recommendation (and conditionals used) by HTML5 Boilerplate: