Cross-Browser CSS3 Rule
Posted
by Alexander Corotchi
on Stack Overflow
See other posts from Stack Overflow
or by Alexander Corotchi
Published on 2010-04-27T16:23:43Z
Indexed on
2010/04/27
16:33 UTC
Read the original article
Hit count: 311
css
I have a stupid question,
If I want to add round corner for an element in browsers which support some stuff of CSS3, I have to repeat style several time for each browser, because it is different ?
For ex :
-moz-border-radius: 12px; /* FF1+ */
-webkit-border-radius: 12px; /* Saf3+, Chrome */
border-radius: 12px; /* Opera 10.5, IE 9 */
It means, that I have to add 3 styles for this radius border, doesn't it ?
© Stack Overflow or respective owner