Demo: border-radius corner clipping

Demonstrating that the css3 border-radius property does not clip content.

by conzett

HTML

<div class="border">
    <p>This content should not be clipped</p>
</div>

CSS

.border{
    background-color: lightBlue;
    border-radius: 40px;
    height: 60px;
}

p{
    font-size: 30px;
}