Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Basically I am trying to work out how I do rounded corners on a DIV in CSS that will render in google chrome

share|improve this question

4 Answers

up vote 25 down vote accepted

Google Chrome (and Safari) work with the following CSS 3 prefixes

-webkit-border-radius: 10px;

for all corners at 10px

-webkit-border-top-left-radius: 8px;
-webkit-border-bottom-left-radius: 8px;

for the top left corner and bottom left at 8px

For Firefox you can use:

-moz-border-radius: 10px;

for all the corners and

-moz-border-radius-topleft: 8px;
-moz-border-radius-bottomleft: 8px;

for the top left corner and bottom left

share|improve this answer
1  
@Spasm i think you have it but just to be clear border-radius is the CSS 3 class. webkit prefix is specifically for Chrome and other webkit browsers. – dove Oct 2 '09 at 7:50
@dove - since Spasm didn't mention border-radius without the prefixes, are you just wanting to point out that some day there will be a browser other than Opera that supports this style rule without the prefix? – Anthony Oct 2 '09 at 7:54
1  
@Anthony: Hopefully Webkit and Mozilla browsers will some day drop the prefix, and just convert to the default, like they're supposed to. And if you already have border-radius in there, then you won't have to go in and change your code... – peirix Oct 2 '09 at 7:57
@peirix thank you and well put, you're spot on. – dove Oct 2 '09 at 8:14
@Dove - I agree we should not be going down the road where there are different prefixes for the same effect on a style rule. I was merely just trying to answer the question and to illustrate there are different methods. Your comments indeed are correct, thx for clarifying for readers – Spasm Oct 2 '09 at 8:55

To cover both Chrome, FF and any browser that supports CSS 3:

{-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
share|improve this answer
1  
+1 for future-proofing with border-radius – peirix Oct 2 '09 at 7:51

It's future-useful to code your css like this:

border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;

That way, when IE9/IE10 comes out your code will also work there as well :D

share|improve this answer

Yes but the only problem with this is that you are actually throwing css errors because of IE being jacked and Microshaft not wanting to do anything about it, the fix that i use is js based but I imagine most people know all about that. But, the reason I use it is because it always works for me and on all the major browsers. Here you go.

var obj= document.getElementById('divName');
var browserName=navigator.appName; 
var browserVer=parseInt(navigator.appVersion); 
//alert(browserName);
if ((browserName=="Microsoft Internet Explorer")) {
obj.style.borderRadius = "15px";
}else {
    obj.style.MozBorderRadius = "15px";
    obj.style.WebkitBorderRadius= "15px";

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.