<div class="cat-left">
</div>
<div class="cat-right">
</div>
.cat-left {
float: left;
width: 233px;
border: 1px solid #c5c5c5;
}
.cat-right {
margin-left: 12px;
float: left;
}
I write this for make two box (one in left and one in right). now I want to make another
<div class="cat-left"></div>
if i put my cat-left after my cat-left then it's shown in right of first cat-left. You have seen that I have used border. Is their any option for me to make it in bottom on existing cat-left.
check http://s7.postimage.org/3t6rfpdih/demo.png for figure out what exactly I want my code.
I have tried by giving position absolute to second cat-left but not sure how it's help me without setting margin in pixel.