I'm having a problem with float:left;
: for a width greater than the page the div
drops, but I wanted it to continue to div
earlier.
HTML:
<div id="menu" class="menu">
MENU
</div>
<div class="resto">
RESTO DO CONTEUDO
</div>
CSS:
.menu {
width: 250px;
float: left;
position: blocked;
background-color: blue;
}
.resto {
background-color: #ccc;
width: 100%;
float: right;
}