I want to use rounded border in my site. So, I use css rounded border property like this
-moz-border-radius-topright: 7px;
It work in firefox well . But in google chrome , it does not work . Why ?
|
|
I want to use rounded border in my site. So, I use css rounded border property like this -moz-border-radius-topright: 7px; It work in firefox well . But in google chrome , it does not work . Why ?
|
||||||||
|
|
|
Also note the slight difference in syntax. You can combine these as you like. |
||||||||
|
|
|
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: -webkit-border-top-right-radius. Since Google Chrome is based on Webkit, I'd expect -webkit-border-top-right-radius to work. 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).
|
||
|
|
|
Chrome uses WebKit for rendering, same as Safari. You'll have to add one more CSS property to your class -
|
||||
|