I want to use rounded border in my site. So, I use the CSS rounded border property like this:
-moz-border-radius-topright: 7px;
It works well in Firefox, but in Google Chrome, it does not work. Why?
|
I want to use rounded border in my site. So, I use the CSS rounded border property like this:
It works well in Firefox, but in Google Chrome, it does not work. Why? |
|||||||||
|
|
The reason why, is that is a Mozilla specific (i.e. Firefox) CSS selector. The relevant CSS3 selector would be:
Webkit (i.e. Safari) also has a non-standard selector: I'd personally include all 3 selectors (as below), then you won't need to edit sometime in the future when everyone catches up with the standard. (Firefox 3.5 is already there as far as I know).
|
||||
|
|
Also note the slight difference in syntax. You can combine these as you like. |
|||||||||
|
|
Chrome uses WebKit for rendering, same as Safari. You'll have to add one more CSS property to your class -
|
|||||
|