AdeleS1997
New Member
I need a quick tip how to manage with some problem. I've created a navi bar and center it so now its in the middle of page no matter how big or small is screen, but how to make that bar to stay on the bottom of page ? I know that when i add a \[code\]height\[/code\] to \[code\].MainContainer\[/code\] it push that bar to the bottom but i want to make it dependless of constant height. Big thanks for any advice!HTML\[code\]<html><head></head> <body> <div class="MainContainer"> </div> <div id="MenuContainer"> <ul id="navigation"> <li class="x"><a title="1" href="http://stackoverflow.com/questions/15699459/indexX-1.html" >1</a></li> <li class="x"><a title="2" href="http://stackoverflow.com/questions/15699459/#" >2</a></li> <li class="x"><a title="3" href="http://stackoverflow.com/questions/15699459/#" >3</a></li> <li class="x"><a title="4" href="http://stackoverflow.com/questions/15699459/#" >4</a></li> <li class="x"><a title="5" href="http://stackoverflow.com/questions/15699459/#" >5</a></li> <li class="contact" class="last"><a title="6" href="http://stackoverflow.com/questions/15699459/#" >6</a></li> </ul> </div> </body></html>\[/code\]CSS\[code\].MainContainer { width: 1200px; background-color: #0066CC;}.MenuContainer { height: 70px; bottom:0;}ul#navigation { height: 70px; list-style: none; margin: 0; padding: 0; border: 1px solid #ccc; border-width: 1px 0; text-align: center; font-size: 22px; font-family: 'Cham-WebFont', Arial, sans-serif; background-color: #FFF;}ul#navigation li { display: inline; margin-right: .75em; list-style: none; margin: 0; padding: 0;}ul#navigation li.last { margin-right: 0;}\[/code\]