vote up 0 vote down star

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 ?

flag

0% accept rate
There's no way you could do it in IE using CSS, you'll either have to use images or use library like Nifty Corners - html.it/articoli/nifty/index.html – Kirtan Jul 11 at 8:41
-webkit for safari & chrome. - option dillerdesign.com/experiment/DD_roundies/… for all browsers. – bob Jul 12 at 7:47
1  
thinzar, you ought to start accepting some answers - just press the tick under whichever response best answers your question :-) – DisgruntledGoat Aug 28 at 14:46

3 Answers

vote up 12 vote down

-moz-... is for Firefox etc. Use -webkit-...:

-webkit-border-top-right-radius: 7px;
-moz-border-radius-topright: 7px;

Also note the slight difference in syntax.

You can combine these as you like. -webkit-... will only be recognized by WebKit browsers (Chrome, Safari), -moz-... will only be recognized by Mozilla-based browsers (Firefox.)

link|flag
True, it's not a standard property, it works on mozilla based browsers. – Mercer Traieste Jul 11 at 8:22
Indeed. Properties that are still in working drafts and have not been agreed on are usually prefixed with an identifier unique to the browser. There are also others like -khtml-... for KHTML based browsers. – Blixt Jul 11 at 8:25
1  
I'd like to add to my previous comment that -khtml-... might work in Chrome as well, since WebKit is a forked version of KHTML. – Blixt Jul 11 at 8:48
vote up 4 vote down

The reason why, is that is a Mozilla specific (i.e. Firefox) CSS selector. The relevant CSS3 selector would be:

border-top-right-radius

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).

.thing{
...some styles...
-moz-border-radius-topright:7px;
-webkit-border-top-right-radius:7px;
border-top-right-radius:7px;
}
link|flag
+1: Yup, including all of them is best for supporting as many browsers as possible. – Blixt Jul 11 at 8:34
vote up 1 vote down

Chrome uses WebKit for rendering, same as Safari. You'll have to add one more CSS property to your class -

.YourClass
{
    -moz-border-radius-topright: 7px; /* For Mozilla browsers */
    -webkit-border-top-right-radius: 7px; /* For WebKit-based browsers */
}
link|flag
I want to know for IE . IE is which type of browser ? Which property to use – thinzar Jul 11 at 8:38
@aye thinzar khine: IE uses an engine called Trident. But it does not support rounded corners even in IE7. However, have a look at this: dillerdesign.com/experiment/DD_roundies – Blixt Jul 11 at 9:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.