What is the best way to create rounded corners using CSS?
|
32
|
|
|
|
|
|
I don't know if you can say that there is any one technique that is "the best". Below are a whole bunch of different approaches. Find one that suits your site and coding style, and go with it. |
||
|
|
|
I looked at this early on in the creation of Stack Overflow and couldn't find any method of creating rounded corners that didn't leave me feeling like I just walked through a sewer.
Which is exactly how you'd want it to work. Although this works OK in the latest versions of Safari and Firefox, but not at all in IE7 (and I don't think in IE8) or Opera. In the meantime, it's hacks all the way down. I'm interested in hearing what other people think is the cleanest way to do this across IE7, FF2/3, Safari3, and Opera 9.5 at the moment.. |
||||||||||||||||
|
|
|
I would recommend using background images. The other ways aren't nearly as good: No anti-aliasing and senseless markup. This is not the place to use JavaScript. |
||
|
|
|
jQuery is the way i'd deal with this personally. css support is minimal, images are too fiddly, to be able to select the elements you want to have round corners in jQuery makes perfect sense to me even though some will no doubt argue otherwise. Theres a plugin I recently used for a project at work here: http://plugins.jquery.com/project/jquery-roundcorners-canvas |
||
|
|
|
|
There are some really nice JQuery implementations to do rounded corners - http://www.methvin.com/jquery/jq-corner-demo.html |
||
|
|
|
|
As Brajeshwar said: Using the border-radius css3 selector. By now, you can apply -moz-border-radius and -webkit-border-radius for Mozilla and Webkit based browsers, respectively. So, what happens with Internet Explorer?. Microsoft has many behaviors to make Internet Explorer have some extra features and get more skills. Here: a .htc behavior file to get round-corners from border-radius value in your CSS. For example.
Of course, behavior selector does not a valid selector, but you can put it on a differennt css file with conditional comments (only for IE). Link behavior HTC file: http://www.htmlremix.com/files/20080924-border-radius.zip Regards, Juan Pablo |
||||
|
|
|
With support for CSS3 being implemented in newer versions of Firefox, Safari and Chrome, it will also be helpful to look at "Border Radius".
Like any other CSS shorthand, the above can also be written in expanded format, and thus achieve different Border Radius for the topleft, topright, etc.
|
||
|
|
|
Here's an HTML/js/css solution that I did recently. There's a 1px rounding error with absolute positioning in IE so you want the container to be an even number of pixels wide, but it's pretty clean. HTML:
jQuery:
CSS:
Image is just 18px wide and has all 4 corners packed together. Looks like a circle. Note: you don't need the second inner wrapper, but I like to use margin on the inner wrapper so that margins on paragraphs and headings still maintain margin collapse. You can also skip the jquery and just put the inner wrapper in the html. |
||
|
|
|
|
I generally get rounded corners just with css, if browser does not support they see the content with flat corners. If rounded corners are not so critical for your site you can use these lines below. If you want to use all corners with same radius this is the easy way:
but if you want to control every corner this is good:
As you see in each set you have browser specific styles and on the fourth rows we declare in standard way by this we assume if in future the others (hopefully IE too) decide to implement the feature to have our style be ready for them too. As told in other answers, this works beautifully on Firefox, Safari, Camino, Chrome. Sinan. |
|||
|
|
|
|
There's always the JavaScript way (see other answers) but since it's is purely styling, I'm kind of against use client scripts to achieve this. The way I prefer (though it has its limits), is to use 4 rounded corner images that you will position in the 4 corners of your box using CSS:
As mentioned, it has its limits (the background behind the rounded box should be plain otherwise the corners won't match the background), but it works very well for anything else. Updated: Improved the implentation by using a sprite sheet. |
||||||
|
|
|
Here's a good video on how to make rounded corners using only CSS: |
||
|
|
|
|
Sure, if it's a fixed width, it's super easy using CSS, and not at all offensive or laborious. It's when you need it to scale in both directions that things get choppy. Some of the solutions have a staggering amount of divs stacked on top of each other to make it happen. My solution is to dictate to the designer that if they want to use rounded corners (for the time being), it needs to be a fixed width. Designers love rounded corners (so do I), so I find this to be a reasonable compromise. |
||
|
|
|
|
Ruzee Borders is the only Javascript-based anti-aliased rounded corner solution I've found that works in all major browsers (Firefox 2/3, Chrome, Safari 3, IE6/7/8), and ALSO the only one that works when both the rounded element AND the parent element contain a background image. It also does borders, shadows, and glowing. The newer RUZEE.ShadedBorder is another option, but it lacks support for obtaining style information from CSS. |
||
|
|
|
|
In safari, chrome (I imagine), firefox 2+ and konquerer (and probably others) you can do it in CSS by using 'border-radius'. As it's not officially part of the spec yet, please use a vendor specific prefix example
The JS solutions generally add a heap of small divs to make it look rounded, or they use borders and negative margins to make 1px notched corners. IMO, the CSS way is better, as it looks cool, is easy, and will degrade gracefully in IE. This is, of course, only the case where the client doesn't enforce them in IE. |
||
|
|
|
|
I personally like this solution the best, its an .htc to allow IE to render curved borders. http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser |
||
|
|
|
|
Might be slightly out of topic, but I stumbled accross this earlier today (rounded corners in IE an Opera using VML & SVG): Didn't dig through it, but looks interesting. Would be nice if incorporated in a framework plugin.. |
||
|
|
|
|
Likewise. I spent far too long on this, trying to do things as nicely as possible. I concluded that square corners were the future. |
||
|
|
|
|
I wrote a blog article on this a while back, so for more info, see here
It works quite well. No Javascript needed, just CSS and HTML. With minimal HTML interfering with the other stuff. It's very similar to what Mono posted, but doesn't contain any IE 6 specific hacks, and after checking, doesn't seem to work at all. Also, another trick is to make the inside portion of each corner image transparent so it doesn't block text that is near the corner. The outer portion must not be transparent so it can cover up the border of the non-rounded div. Also, once CSS3 is widely supported with border-radius, that will be the official best way of making rounded corners. |
||
|
|
|
|
As an indication of how complex it is to get rounded corners even Yahoo discourages them (see first bulleted point). Granted they were only talking here about 1 pixel rounded corners but its interesting to see that even a company with their expertise has concluded theyre just too much pain to get them working most of the time. If your design can survive without them then thats definitely the easiest solution. |
||
|
|
|
|
Article on rounded corners techniques from Yahoo Developer network - from 2007. And a way to add rounded corners (requiring images) to a YUI panel. |
||
|
|
|
|
Here is a post about creating a rounded text inputs with jQuery. No image necessary! http://www.tonyamoyal.com/blog/2009/06/23/text-inputs-with-rounded-corners-using-jquery-without-image/ |
||
|
|
|
|
Don't use CSS, jQuery has been mentioned several times. If you need full control of the background and border of your elements give thejQuery Background Canvas Plugin a try. It places a HTML5 Canvas element in the background and allows yo to draw every background or border you want. Rounded corners, gradients and so on. |
||
|
|
|
|
Opera does not support border-radius yet (apparently it will be in the release after version 10). In the meantime, you can use CSS to set an SVG background to create a similar effect. |
||
|
|
|
|
I know you're trying to do this with CSS, but silverlight comes with built in support for corner radius. |
||
|
