Here's my source code, what is wrong with it?
CSS:
 .no1.right {text-align: right;float : right}
 .no1.left {text-align : left;float : left}
 .no1 {background-color: blue}
HTML:
<div class="no1">
    <div class="right">a</div>
    <div class="left">b</div>
</div>
Why the background-color not working ?
 
     
    