I have a DIV with height: auto; that does not adjust the height according to an internal div with height: 120px;
See CSS
.conteudo-modelo-3-0 {
width:960px;
height:auto;
margin: 0 auto;
}
.conteudo-modelo-3-1{
position:relative;
width:840px;
height:120px;
float:right;
background-color:#666666;
}
The DIV content-template-3-0 does not readjust according to the height of content-template-3-1 .
What do I do to fix this?