What is the best way to create rounded corners using CSS? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:12:51Z http://stackoverflow.com/feeds/question/7089 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css 51 What is the best way to create rounded corners using CSS? Eldila 2008-08-10T08:08:21Z 2009-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#7093 1 Answer by Stan for What is the best way to create rounded corners using CSS? Stan 2008-08-10T08:16:10Z 2008-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#7098 32 Answer by Yaakov Ellis for What is the best way to create rounded corners using CSS? Yaakov Ellis 2008-08-10T08:27:50Z 2008-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 &amp; 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#7099 25 Answer by Jeff Atwood for What is the best way to create rounded corners using CSS? Jeff Atwood 2008-08-10T08:28:52Z 2008-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#7102 4 Answer by Jonas Follesø for What is the best way to create rounded corners using CSS? Jonas Follesø 2008-08-10T08:41:38Z 2008-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#7112 10 Answer by Lance Fisher for What is the best way to create rounded corners using CSS? Lance Fisher 2008-08-10T08:51:29Z 2008-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#7971 3 Answer by Crossbrowser for What is the best way to create rounded corners using CSS? Crossbrowser 2008-08-11T17:23:09Z 2009-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>&lt;div class="Rounded"&gt; // content &lt;div class="RoundedCorner RoundedCorner-TopLeft"&gt;&lt;/div&gt; &lt;div class="RoundedCorner RoundedCorner-TopRight"&gt;&lt;/div&gt; &lt;div class="RoundedCorner RoundedCorner-BottomRight"&gt;&lt;/div&gt; &lt;div class="RoundedCorner RoundedCorner-BottomLeft"&gt;&lt;/div&gt; &lt;/div&gt; </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#9199 8 Answer by mcaulay for What is the best way to create rounded corners using CSS? mcaulay 2008-08-12T20:01:45Z 2008-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#22120 0 Answer by Berzemus for What is the best way to create rounded corners using CSS? Berzemus 2008-08-22T11:38:53Z 2008-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 &amp; 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#22183 0 Answer by izb for What is the best way to create rounded corners using CSS? izb 2008-08-22T12:17:58Z 2008-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 -1 Answer by TheImirOfGroofunkistan for What is the best way to create rounded corners using CSS? TheImirOfGroofunkistan 2008-08-22T12:29:58Z 2008-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#22222 0 Answer by Kibbee for What is the best way to create rounded corners using CSS? Kibbee 2008-08-22T12:41:23Z 2008-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>&lt;div class="item_with_border"&gt; &lt;div class="border_top_left"&gt;&lt;/div&gt; &lt;div class="border_top_right"&gt;&lt;/div&gt; &lt;div class="border_bottom_left"&gt;&lt;/div&gt; &lt;div class="border_bottom_right"&gt;&lt;/div&gt; This is the text that is displayed &lt;/div&gt; &lt;style&gt; div.item_with_border { border: 1px solid #FFF; postion: relative; } div.item_with_border &gt; 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 &gt; 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 &gt; 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 &gt; div.border_bottom_right { background-image: url(bottomright.png); position: absolute; bottom: -1px; right: -1px; width: 30px; height: 30px; z-index: 2; } &lt;/style&gt; </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#42264 1 Answer by CarmineSantini for What is the best way to create rounded corners using CSS? CarmineSantini 2008-09-03T18:23:58Z 2008-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#144373 1 Answer by Nathan Chase for What is the best way to create rounded corners using CSS? Nathan Chase 2008-09-27T20:16:35Z 2008-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#210680 2 Answer by Jethro Larson for What is the best way to create rounded corners using CSS? Jethro Larson 2008-10-16T23:47:47Z 2008-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>&lt;div class="s"&gt;Content&lt;/div&gt; </code></pre> <p>jQuery: </p> <pre><code>$("div.s") .wrapInner("&lt;div class='s-iwrap'&gt;&lt;div class='s-iwrap2'&gt;") .prepend('&lt;div class="tr"/&gt;&lt;div class="tl"/&gt;&lt;div class="br"/&gt;&lt;div class="bl"/&gt;'); </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#465123 3 Answer by Brajeshwar for What is the best way to create rounded corners using CSS? Brajeshwar 2009-01-21T12:41:10Z 2009-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#494584 1 Answer by Simon for What is the best way to create rounded corners using CSS? Simon 2009-01-30T05:40:27Z 2009-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#494588 0 Answer by Simon for What is the best way to create rounded corners using CSS? Simon 2009-01-30T05:42:39Z 2009-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#644587 5 Answer by juanpablob for What is the best way to create rounded corners using CSS? juanpablob 2009-03-13T20:47:18Z 2009-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#823255 2 Answer by alex for What is the best way to create rounded corners using CSS? alex 2009-05-05T03:50:41Z 2009-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#1038992 1 Answer by Tony for What is the best way to create rounded corners using CSS? Tony 2009-06-24T15:11:55Z 2009-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#1121182 2 Answer by Sinan Y. for What is the best way to create rounded corners using CSS? Sinan Y. 2009-07-13T18:20:00Z 2009-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#1357251 0 Answer by Thomas Maierhofer for What is the best way to create rounded corners using CSS? Thomas Maierhofer 2009-08-31T12:34:38Z 2009-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#1357286 0 Answer by Dan Dyer for What is the best way to create rounded corners using CSS? Dan Dyer 2009-08-31T12:43:04Z 2009-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#1453789 1 Answer by Tristan for What is the best way to create rounded corners using CSS? Tristan 2009-09-21T10:17:04Z 2009-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>