Fixed Width Layout - Left column not stretching
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > < html xmlns= "http://www.w3.org/1999/xhtml" > <head> <title>Fixed Width Layout - Left column not stretching</title> <meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" /> <style type= "text/css" > body { margin: 0 ; padding: 0 ; text-align: center; background: #f0f0f0; } #wrapper { text-align: left; width: 770 px; margin: 10 px auto 0 auto; position: relative; } #header { background: # 272727 ; padding: 10 px 15 px 10 px 13 px; } #content-wrapper { width: 570 px; background: #fff; position: absolute; left: 200 px; } #content-inner { padding: 5 px 15 px 0 15 px; } #navigation { position: absolute; width: 200 px; padding-top: 15 px; background: #dade75; } </style> </head> < body > <div id= "wrapper" > <div id= "header" >header</div> <div id= "content-wrapper" > <div id= "content-inner" > <p> this is a test. this is a test. </p> <p> this is a test. this is a test. </p> <p> this is a test. this is a test. </p> </div> </div> <div id= "navigation" > <ul> <li><a href= "" >Day 1 </a></li> <li><a href= "" >Day 2 </a></li> <li><a href= "" >Day 3 </a></li> <li><a href= "" >Day 4 </a></li> <li><a href= "" >Day 5 </a></li> </ul> </div> </div> </ body > </ html >
HTML code for linking to this page:
Related in same category :