Why when I want to use border-radius do i need 3 seperate browsers?
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
Why can’t they all just understand border-radius ?
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.
The CSS3 spec is still not finalized. Browser vendors usually keep it as
(vendor)-*until they think the spec is stable enough.Chrome, for instance, has started migrating to the standard and removed the
-webkitprefix for various properties.