My divs with position:absolute
or relative
keep showing on top of my other divs , even so that i already gave them a float , is there anyway to clear the float state of the positions:relative
or absolute
?
.topo {
position: relative;
}
.area-logo {
position: absolute;
width: 798px;
background-color: green;
left: 0px;
top: 0px;
background: url(topo-imagem-principal.png);
height: 250px;
}
.area-menu {
background: url(topo-imagem-lateral.png);
position: absolute;
top: 0px;
right: 0px;
width: 639px;
height: 250px;
}
.bottom-div {
width: 50%;
float: left;
}
bottom-div {
width: 50%;
float: right;
}