3
I have a problem with float:left;
: for a width greater than the page a div
fell, but I wanted it to continue div
previous.
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;
}
Thank you very much I managed to solve my problem
– Dieguinho Rodrigues
Always welcome! Note: If I answered your question put the same with the correct answer
– CesarMiguel
I put the answer to my poblema,??
– Dieguinho Rodrigues
No, the answer I gave is a visa/correct. Just click there.
– CesarMiguel