Clean me up.

I gots extra stuff.

by Rich Costello

HTML

<section>
    <div class="orange">Orange</div>
    <div class="apple">Apple</div>
    <br class="clear" />
</section>

CSS

section {
    width:300px;
    margin:auto ;
    background:#eee;

}
section > div {
    float:left;
    padding:10px
}
.orange {
    background-color:orange
}
.apple {
    background-color:lightgreen
}
br.clear {clear:both;line-height:0}