up vote 9 down vote favorite
share [g+] share [fb]

I have a Coda slider on one webpage (hand-crafted, not using the plugin, but that's irrelevant) and the outer div has a border-radius.

A bunch of inner divs have background colors, but they stick out on top of the corners when I want them to be BEHIND the rounded corner.

Is there any way to achieve this?

link|improve this question

It is working with Firefox 3.6.11 with overflow: hidden. – Laus Brandt Mar 4 '11 at 9:43
Not working for me in 3.6.14. What OS are you on? Does the image on this page have rounded or square corners for you? – robertc Mar 6 '11 at 22:32
feedback

2 Answers

up vote 5 down vote accepted

I found that WebKit would crop everything if I put overflow: hidden on the element, but Gecko wouldn't (see my blog post for code and screenshots). The best I could do in Gecko was either put a border radius in the inner div too, or add a margin/padding to the wrapper div so that the inner divs sat below the corners.

link|improve this answer
So this is the only way then? – Brandon Wang Aug 14 '09 at 22:01
I suspect Gecko really ought to respect the overflow: hidden, but it's not fully implemented yet. It's hard to say either way until the spec is finalised though. – robertc Aug 14 '09 at 22:15
I asked a question on the MDC wiki and Jürgen Jeka pointed me at the defect: bugzilla.mozilla.org/show_bug.cgi?id=459144 – robertc Aug 15 '09 at 23:48
2  
Found a way to get rounded corners in Firefox using SVG clipping: boogdesign.com/b2evo/index.php/2009/09/02/… Tested on image elements, ought to work for any content. – robertc Sep 2 '09 at 17:24
Works in IE10 dev preview as well (so maybe even 9 - have not tested) – Allanrbo Oct 2 '11 at 23:48
feedback

If you apply position:static to the element with overflow:hidden you will achieve the results you are looking for.

Check this out: overflow:hidden, border-radius and position:absolute

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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