Nieuw lid |
|
Edit:
Ik heb voor elkaar wat ik wil. Het was inderdaad iets met floats. Maar het probleem is dat ik nu nog niet snap waarom het nou allemaal wel werkt. En ik vind het altijd wel handig om te begrijpen wat ik doe.
http://www.meputrecht.nl/mam/index.html
Dit is mijn css nou:
#wrapper
{
position: relative;
width: 800px;
height: 800px;
margin-left: auto;
margin-right: auto;
text-align:left;
background-color: red;
}
#header {
width: 800px;
height: 100px;
background-color: black;
}
#nav {
position: relative;
float: left;
width: 200px;
height: 700px;
background-color: green;
}
#content {
position: relative;
float: right;
width: 600px;
height: 700px;
background-color: blue;
}
#wrapper { position: relative; width: 800px; height: 800px; margin-left: auto; margin-right: auto; text-align:left; background-color: red; } #header { width: 800px; height: 100px; background-color: black; } #nav { position: relative; float: left; width: 200px; height: 700px; background-color: green; } #content { position: relative; float: right; width: 600px; height: 700px; background-color: blue; }
De html code is nog steeds hetzelde.
Ik heb dus de float aangepast. Maar ik vind dit een beetje gek zeg maar, omdat ik gewend ben super veel left en top dingen te gebruiken en dan het uiteindelijk allemaal in elkaar te laten passen. En nu doet die opeens precies wat ik wil, met super weinig code,.
Krijg ik hier geen problemen mee, als ik nog meer div's erbij zou doen enzo.. ?
En als ik het nu wel met left en top enzo zou willen doen, hoe zou ik dat dan moeten doen?
|