I use -moz-border-radius and -webkit-border-radius for making rounded corner. However as we know IE 7 doesn't support that. What I would like to do is to basically use standard for firefox and Safari however for IE I would like to use javascript. by using this http://www.editsite.net/blog/rounded%5Fcorners.html
My question is how can i make conditional so that each browser know the way to render the page?
-moz-border-radiusand-webkit-border-radiusare anything but standard. CSS properties beginning with-are browser-specific.border-radiuswas introduced in CSS3, but CSS3 support isn't really widespread yet. – Piskvor Nov 7 '09 at 12:30