Does anyone know if/when Internet Explorer will support the “border-radius” CSS attribute?
Does anyone know if/when Internet Explorer will support the border-radius CSS attribute?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes! When IE9 is released in Jan 2011.
Let’s say you want an even 15px on all four sides:
IE9 will use the default
border-radius, so just make sure you include that in all your styles calling a border radius. Then your site will be ready for IE9.-moz-border-radiusis for Firefox,-webkit-border-radiusis for Safari and Chrome.Furthermore: don’t forget to declare your IE coding is ie9:
Some lazy developers have
<meta http-equiv="X-UA-Compatible" content="IE=7" />. If that tag exists, border-radius will never work in IE.