Ok I have been working with XHTML and CSS to create a portfolio page.
I created an outer div and then nested in that 3 divs for header nav and content. Here is the page
Now as you can see when the content section gets longer than the nav section the content move to over left. I would like those two things seperate. Here is my CSS coding for the nav
.navigation{
float: left;
clear: both;
padding-right: 25px;
height: 100%;
}
I have removed the height 100% and that does nothing. Should I add a float attribute to the content section?
I created an outer div and then nested in that 3 divs for header nav and content. Here is the page
Now as you can see when the content section gets longer than the nav section the content move to over left. I would like those two things seperate. Here is my CSS coding for the nav
.navigation{
float: left;
clear: both;
padding-right: 25px;
height: 100%;
}
I have removed the height 100% and that does nothing. Should I add a float attribute to the content section?