so far I have this:
html, body {
height: 100%;
}
#wrap { margin:auto; width:800px; overflow:hidden;}
#header {background-image:url(images/header.jpg); height:100px; border-bottom:5px #95a87a solid; overflow:hidden;}
#content {width:800px; text-align:left; margin:auto; padding-top:25px; float:right; height:auto;}
#nav { width:150px; text-align:left; float:left; display:block; line-height:1.0em; padding-left:10px;
background-image:url(images/patterntile.gif); background-repeat:repeat; height:auto;}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Sagefield Homes in Temecula</title> <link rel="stylesheet" type="text/css" href="sagefield.css"> </head> <body> <div id="wrap"> <div id="header"></div> <div id="nav"> </div> </div> </body> </html>
Why isn't doesnt this let the nav div expand to 100%?
