I need round corners on a parent div to mask content from its childen. "overflow: hidden" works in simple situations, but breaks in webkit based browsers and Opera when the parent is positioned relatively or absolutely.
This works in Firefox and IE9:
CSS
#wrapper {
width: 300px; height: 300px;
border-radius: 100px;
overflow: hidden;
position: absolute;
}
#box {
width: 300px; height: 300px;
background-color: #cde;
}
HTML
<div id="wrapper">
<div id="box"></div>
</div>
Thanks for the help!