It's no secret that my website looks pretty terrible on Internet Explorer versions 7 and 6. I have to face the facts.
When it comes to targeting IE with conditional comments, you can use something like <!-- IF (IE) -->
.
But here's the thing - what if a visitor lands on my site using a different browser like Firefox 4 (which is still popular at my school)? How do I detect that?
My goal is to determine if the browser supports border-radius, and if not, load basic styles instead of advanced ones. So, how can I achieve this using JavaScript or conditional comments?
Any advice would be greatly appreciated!