Basic Box Radius

by Lien Z

HTML

<div class="box">Our box model</div>

CSS

.box {
    color: #fff;
    background: #cc3300;
    width:200px;
    height: 200px;
    line-height: 200px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    text-align: center;
}