Border radius inheritance test

by laustdeleuran

HTML

<div><div></div></div>

CSS

div {
    background:#f0f;
    min-height:20px;
    min-width:20px;
    border-radius:5px;   
    padding:10px;    
}
div div {
    background:#f00;
    border-radius:15px inherit 15px 15px;
}