What is the best way to create rounded corners using CSS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:12:51Zhttp://stackoverflow.com/feeds/question/7089http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css51What is the best way to create rounded corners using CSS?Eldila2008-08-10T08:08:21Z2009-11-16T00:17:38Z
<p>What is the best way to create rounded corners using CSS?</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7093#70931Answer by Stan for What is the best way to create rounded corners using CSS?Stan2008-08-10T08:16:10Z2008-08-10T08:16:10Z<p>Here's a good video on how to make rounded corners using only CSS:<br />
<a href="http://www.sampsonvideos.com/video.php?video=12" rel="nofollow">http://www.sampsonvideos.com/video.php?video=12</a></p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7098#709832Answer by Yaakov Ellis for What is the best way to create rounded corners using CSS?Yaakov Ellis2008-08-10T08:27:50Z2008-08-10T08:27:50Z<p>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.</p>
<ol>
<li><a href="http://www.alistapart.com/articles/customcorners/" rel="nofollow" title="Modern Compiler Implementation in ML">CSS Design: Creating Custom Corners
& Borders</a></li>
<li><a href="http://www.smileycat.com/miaow/archives/000044.php" rel="nofollow" title="Modern Compiler Implementation in Java">CSS Rounded Corners 'Roundup'</a></li>
<li><a href="http://www.cssjuice.com/25-rounded-corners-techniques-with-css/" rel="nofollow" title="Modern Compiler Implementation in C">25 Rounded Corners Techniques with CSS</a></li>
</ol>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7099#709925Answer by Jeff Atwood for What is the best way to create rounded corners using CSS?Jeff Atwood2008-08-10T08:28:52Z2008-08-10T08:28:52Z<p>I looked at this early on in the creation of Stack Overflow and couldn't find <em>any</em> method of creating rounded corners that didn't leave me feeling like I just walked through a sewer.</p>
<p><a href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way" rel="nofollow">CSS3 does finally define</a> the </p>
<pre><code>border-radius:
</code></pre>
<p>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.</p>
<p>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..</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7102#71024Answer by Jonas Follesø for What is the best way to create rounded corners using CSS?Jonas Follesø2008-08-10T08:41:38Z2008-08-10T08:41:38Z<p>There are some really nice JQuery implementations to do rounded corners - <a href="http://www.methvin.com/jquery/jq-corner-demo.html" rel="nofollow" title="Modern Compiler Implementation in ML"><a href="http://www.methvin.com/jquery/jq-corner-demo.html" rel="nofollow">http://www.methvin.com/jquery/jq-corner-demo.html</a></a></p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7112#711210Answer by Lance Fisher for What is the best way to create rounded corners using CSS?Lance Fisher2008-08-10T08:51:29Z2008-08-10T08:51:29Z<p>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.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7971#79713Answer by Crossbrowser for What is the best way to create rounded corners using CSS?Crossbrowser2008-08-11T17:23:09Z2009-08-12T15:53:40Z<p>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.</p>
<p>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:</p>
<pre><code><div class="Rounded">
// content
<div class="RoundedCorner RoundedCorner-TopLeft"></div>
<div class="RoundedCorner RoundedCorner-TopRight"></div>
<div class="RoundedCorner RoundedCorner-BottomRight"></div>
<div class="RoundedCorner RoundedCorner-BottomLeft"></div>
</div>
</code></pre>
<p><hr /></p>
<pre><code>/********************************
* Rounded styling
********************************/
.Rounded
{
position: relative;
}
.Rounded .RoundedCorner
{
position: absolute;
background-image: url('SpriteSheet.png');
background-repeat: no-repeat;
overflow: hidden;
/* Size of the rounded corner images */
height: 5px;
width: 5px;
}
.Rounded .RoundedCorner-TopLeft
{
top: 0;
left: 0;
/* No background position change (or maybe depending on your sprite sheet) */
}
.Rounded .RoundedCorner-TopRight
{
top: 0;
right: 0;
/* Move the sprite sheet to show the appropriate image */
background-position: -5px 0;
}
/* Hack for IE6 */
* html .Rounded .RoundedCorner-TopRight
{
right: -1px;
}
.Rounded .RoundedCorner-BottomLeft
{
bottom: 0;
left: 0;
/* Move the sprite sheet to show the appropriate image */
background-position: 0 -5px;
}
/* Hack for IE6 */
* html .Rounded .RoundedCorner-BottomLeft
{
bottom: -20px;
}
.Rounded .RoundedCorner-BottomRight
{
bottom: 0;
right: 0;
/* Move the sprite sheet to show the appropriate image */
background-position: -5px -5px;
}
/* Hack for IE6 */
* html .Rounded .RoundedCorner-BottomRight
{
bottom: -20px;
right: -1px;
}
</code></pre>
<p><hr /></p>
<p>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.</p>
<p><hr /></p>
<p><strong>Updated:</strong> Improved the implentation by using a sprite sheet.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/9199#91998Answer by mcaulay for What is the best way to create rounded corners using CSS?mcaulay2008-08-12T20:01:45Z2008-08-12T20:01:45Z<p>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: <a href="http://plugins.jquery.com/project/jquery-roundcorners-canvas" rel="nofollow" title="PyXML"><a href="http://plugins.jquery.com/project/jquery-roundcorners-canvas" rel="nofollow">http://plugins.jquery.com/project/jquery-roundcorners-canvas</a></a></p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/22120#221200Answer by Berzemus for What is the best way to create rounded corners using CSS?Berzemus2008-08-22T11:38:53Z2008-08-22T11:38:53Z<p>Might be slightly out of topic, but I stumbled accross this earlier today (rounded corners in IE an Opera using VML & SVG):<br />
<a href="http://www.hackszine.com/blog/archive/2008/08/crossbrowser_rounded_vector_co.html" rel="nofollow">http://www.hackszine.com/blog/archive/2008/08/crossbrowser_rounded_vector_co.html</a></p>
<p>Didn't dig through it, but looks interesting. Would be nice if incorporated in a framework plugin..</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/22183#221830Answer by izb for What is the best way to create rounded corners using CSS?izb2008-08-22T12:17:58Z2008-08-22T12:17:58Z<blockquote>
<p>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.</p>
</blockquote>
<p>Likewise. I spent far too long on this, trying to do things as nicely as possible. I concluded that square corners were the future.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/22200#22200-1Answer by TheImirOfGroofunkistan for What is the best way to create rounded corners using CSS?TheImirOfGroofunkistan2008-08-22T12:29:58Z2008-08-22T12:29:58Z<p>I know you're trying to do this with CSS, but silverlight comes with built in support for corner radius.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/22222#222220Answer by Kibbee for What is the best way to create rounded corners using CSS?Kibbee2008-08-22T12:41:23Z2008-08-22T12:41:23Z<p>I wrote a blog article on this a while back, so for more info, <a href="http://www.kibbee.ca/Blog/viewComments.php?blogid=354" rel="nofollow">see here</a> </p>
<pre><code><div class="item_with_border">
<div class="border_top_left"></div>
<div class="border_top_right"></div>
<div class="border_bottom_left"></div>
<div class="border_bottom_right"></div>
This is the text that is displayed
</div>
<style>
div.item_with_border
{
border: 1px solid #FFF;
postion: relative;
}
div.item_with_border > div.border_top_left
{
background-image: url(topleft.png);
position: absolute;
top: -1px;
left: -1px;
width: 30px;
height: 30px;
z-index: 2;
}
div.item_with_border > div.border_top_right
{
background-image: url(topright.png);
position: absolute;
top: -1px;
right: -1px;
width: 30px;
height: 30px;
z-index: 2;
}
div.item_with_border > div.border_bottom_left
{
background-image: url(bottomleft.png);
position: absolute;
bottom: -1px;
left: -1px;
width: 30px;
height: 30px;
z-index: 2;
}
div.item_with_border > div.border_bottom_right
{
background-image: url(bottomright.png);
position: absolute;
bottom: -1px;
right: -1px;
width: 30px;
height: 30px;
z-index: 2;
}
</style>
</code></pre>
<p>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. </p>
<p>Also, once CSS3 is widely supported with border-radius, that will be the official best way of making rounded corners.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/42264#422641Answer by CarmineSantini for What is the best way to create rounded corners using CSS?CarmineSantini2008-09-03T18:23:58Z2008-09-03T18:23:58Z<p>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. </p>
<p>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. </p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/144373#1443731Answer by Nathan Chase for What is the best way to create rounded corners using CSS?Nathan Chase2008-09-27T20:16:35Z2008-09-27T20:16:35Z<p><a href="http://www.ruzee.com/blog/ruzeeborders/" rel="nofollow">Ruzee Borders</a> 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.</p>
<p>The newer <a href="http://www.ruzee.com/blog/shadedborder" rel="nofollow"> RUZEE.ShadedBorder</a> is another option, but it lacks support for obtaining style information from CSS.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/210680#2106802Answer by Jethro Larson for What is the best way to create rounded corners using CSS?Jethro Larson2008-10-16T23:47:47Z2008-10-16T23:47:47Z<p>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. </p>
<p>HTML:</p>
<pre><code><div class="s">Content</div>
</code></pre>
<p>jQuery: </p>
<pre><code>$("div.s")
.wrapInner("<div class='s-iwrap'><div class='s-iwrap2'>")
.prepend('<div class="tr"/><div class="tl"/><div class="br"/><div class="bl"/>');
</code></pre>
<p>CSS:</p>
<pre><code>/*rounded corner orange box - no title*/
.s{position:relative; margin: 0 auto 15px; zoom:1;}
.s-iwrap{border: 1px solid #FF9933;}
.s-iwrap2{margin: 12px;}
.s .br,.s .bl, .s .tl, .s .tr{
background: url(css/images/orange_corners_sprite.png) no-repeat;
line-height:1px;
font-size:1px;
width:9px;
height:9px;
position:absolute;}
.s .br{bottom: 0; right:0; background-position: bottom right;}
.s .bl{bottom: 0; left: 0;background-position: bottom left;}
.s .tl{top:0; left: 0;background-position: top left;}
.s .tr{top:0; right: 0;background-position: top right;}
</code></pre>
<p>Image is just 18px wide and has all 4 corners packed together. Looks like a circle.</p>
<p>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.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/465123#4651233Answer by Brajeshwar for What is the best way to create rounded corners using CSS?Brajeshwar2009-01-21T12:41:10Z2009-01-21T12:41:10Z<p>With support for CSS3 being implemented in newer versions of Firefox, Safari and Chrome, it will also be helpful to look at "Border Radius".</p>
<pre><code>-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
</code></pre>
<p>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.</p>
<pre><code>-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 7px;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 3px;
-webkit-border-top-rightright-radius: 10px;
-webkit-border-top-left-radius: 7px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-rightright-radius: 3px;
</code></pre>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/494584#4945841Answer by Simon for What is the best way to create rounded corners using CSS?Simon2009-01-30T05:40:27Z2009-01-30T05:40:27Z<p>As an indication of how complex it is to get rounded corners even <a href="http://developer.yahoo.com/yui/container/" rel="nofollow">Yahoo discourages them</a> (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 <a href="http://developer.yahoo.com/yui/container/1pxRoundedCornersIE.html" rel="nofollow">to get them working</a> most of the time.</p>
<p>If your design can survive without them then thats definitely the easiest solution.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/494588#4945880Answer by Simon for What is the best way to create rounded corners using CSS?Simon2009-01-30T05:42:39Z2009-01-30T05:42:39Z<p><a href="http://developer.yahoo.net/blog/archives/2007/10/interacting_wit.html" rel="nofollow">Article on rounded corners techniques</a> from Yahoo Developer network - from 2007. And a way to <a href="http://blog.davglass.com/files/yui/overlay2/" rel="nofollow">add rounded corners (requiring images) to a YUI pane</a>l.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/644587#6445875Answer by juanpablob for What is the best way to create rounded corners using CSS?juanpablob2009-03-13T20:47:18Z2009-11-16T00:17:38Z<p>As Brajeshwar said: Using the <code>border-radius</code> css3 selector. By now, you can apply <code>-moz-border-radius</code> and <code>-webkit-border-radius</code> for Mozilla and Webkit based browsers, respectively.</p>
<p>So, what happens with Internet Explorer?. Microsoft has many behaviors to make Internet Explorer have some extra features and get more skills.</p>
<p>Here: a <code>.htc</code> behavior file to get <code>round-corners</code> from <code>border-radius</code> value in your CSS. For example.</p>
<pre><code>div.box {
background-color: yellow;
border: 1px solid red;
border-radius: 5px;
behavior: url(corners.htc);
}
</code></pre>
<p>Of course, behavior selector does not a valid selector, but you can put it on a different css file with conditional comments (only for IE).</p>
<p>The <a href="http://www.htmlremix.com/files/20080924-border-radius.zip" rel="nofollow">behavior HTC file</a></p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/823255#8232552Answer by alex for What is the best way to create rounded corners using CSS?alex2009-05-05T03:50:41Z2009-05-05T03:50:41Z<p>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</p>
<p>example</p>
<pre><code>#round-my-corners-please {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
}
</code></pre>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/1038992#10389921Answer by Tony for What is the best way to create rounded corners using CSS?Tony2009-06-24T15:11:55Z2009-06-24T15:11:55Z<p>Here is a post about creating a rounded text inputs with jQuery. No image necessary! <a href="http://www.tonyamoyal.com/blog/2009/06/23/text-inputs-with-rounded-corners-using-jquery-without-image/" rel="nofollow">http://www.tonyamoyal.com/blog/2009/06/23/text-inputs-with-rounded-corners-using-jquery-without-image/</a></p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/1121182#11211822Answer by Sinan Y. for What is the best way to create rounded corners using CSS?Sinan Y.2009-07-13T18:20:00Z2009-07-13T18:20:00Z<p>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.</p>
<p>If you want to use all corners with same radius this is the easy way:</p>
<pre><code>.my_rounded_corners{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
}
</code></pre>
<p>but if you want to control every corner this is good:</p>
<pre><code>.my_rounded_corners{
border: 1px solid #ccc;
-moz-border-radius-topleft: 10px;
-khtml-border-top-left-radius: 10px;
-webkit-border-top-left-radius: 10px;
border-top-left-radius: 10px;
-moz-border-radius-topright: 0px;
-khtml-border-top-right-radius: 0px;
-webkit-border-top-right-radius: 0px;
border-top-right-radius: 0px;
-moz-border-radius-bottomleft: 4px;
-khtml-border-bottom-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 10px;
-khtml-border-bottom-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
border-bottom-right-radius: 10px;
}
</code></pre>
<p>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. </p>
<p>As told in other answers, this works beautifully on Firefox, Safari, Camino, Chrome.</p>
<p>Sinan.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/1357251#13572510Answer by Thomas Maierhofer for What is the best way to create rounded corners using CSS?Thomas Maierhofer2009-08-31T12:34:38Z2009-08-31T12:34:38Z<p>Don't use CSS, jQuery has been mentioned several times. If you need full control of the background and border of your elements give the<a href="http://www.maierhofer.de/en/open-source/jquery-background-canvas-plugin.aspx" rel="nofollow">jQuery Background Canvas Plugin</a> 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.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/1357286#13572860Answer by Dan Dyer for What is the best way to create rounded corners using CSS?Dan Dyer2009-08-31T12:43:04Z2009-08-31T12:43:04Z<p>Opera does not support border-radius yet (apparently it will be in the release after version 10). In the meantime, you can <a href="http://dev.opera.com/articles/view/new-development-techniques-using-opera-k/" rel="nofollow">use CSS to set an SVG background to create a similar effect</a>.</p>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/1453789#14537891Answer by Tristan for What is the best way to create rounded corners using CSS?Tristan2009-09-21T10:17:04Z2009-09-21T10:17:04Z<p>I personally like this solution the best, its an .htc to allow IE to render curved borders.</p>
<p><a href="http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser" rel="nofollow">http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser</a></p>