September 21, 201015 yr Hi , I have the following example for border radius in css : -moz-border-radius: 15px; border-radius: 15px; I observed that the border radius of my element works on Mozilla but on Internet Explorer not. What can I do to work too on Internet Explore? Tk, Alisia
September 21, 201015 yr Don't forget the webkit version: -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; Internet Explorer won't support border-radius until version 9. In the meantime just let IE users see square corners
Create an account or sign in to comment