I have the following code, my row_container div's hold the left and right divs.
I'm struggling to get the row containter to have the same height as the nested left and right divs.. what am i missing?
I tried height:auto; didnt work.
I need the row to have a solid background colour
.row_container{
margin:auto;
width:420px;
background-color:#FFFFFF;
padding-top:15px;
padding-bottom:15px;
clear:both;
}
.left_row{
float:left;
width:200px;
padding:5px;
}
.right_row{
width:200px;
float:right;
text-align:justify;
padding:5px;
}