Hey guys, I'm having some trouble with my css position. Basically I have a sidebar that is set to the left of the screen, which basically includes all my links for navigation. I want the sidebar to extend all the way to the bottom of the screen, no matter if the user minimizes or maximizes the browser, or their resolution. Even if the page happens to scroll I want the div to go all the way to the bottom. I'm having a lot of trouble with this and cannot get it to work correctly. Here is my code, if anyone spots the reason it is not working, any help is greatly appreciated.
HTML:
<div id="welcome">
Welcome <br> to My Site!<br>
<span style="color: red; ">(Beta)</span>
<div id="sidebar"><a href="index.php">Home</a></div>
<div id="sidebar"><a href="link">link</a></div>
<div id="sidebar"><a href="Link">Link</a></div>
<div id="sidebar"><a href="Link">Link</a></div>
<div id="sidebar"><a href="Link">Link</a></div>
<div id="sidebar"><a href="forumPage.php">Forum</a></div>
<div id="sidebar"><a href="link">About</a></div>
<div id ="sidebar"><a href="link">Requests</a></div>
<div id="sidebar" ><a href="unity.php">"Pr0j3ct Un1ty"</a></div>
<div style="font-size: 20px;">Logged in as: <?php echo $_SESSION['username']; ?> </div>
<div id = "sidebar" >
<a href = "logoff.php">Logout</a> </div>
<div style=" font-size: 16px;"><a href="accountSettings.php">Account Settings</a></div>
<div style="margin-left: 10px; position: absolute; bottom: 0px; font-size: 16px;"><b>© jm1llz 2010</b></div>
</div>
CSS Page:
#welcome
{
width: 15%;
float: left;
background-color: darkgrey;
height: 100%;
text-align: center;
font-size: 24px;
font-family: Comic Sans MS;
font-weight: bold;
}