I want div "1" to the center and div "2" to the right. what can i do? I have this html
<div class="header">
<div class="1"></div>
<div class="2"></div>
</div>
and this css
.1 {
display:inline-block;
width:200px;
height:120px;}
.2 {
display:inline-block;
width:250px;
height:120px;
float:right;}