I have the following code, my div_container div contains left and right divs.
I try my best to make the line contain the same height as the nested left and right divs. What am I missing?
I tried height: auto; does not work.
I need the string to have a solid background color
.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; }
chris source share