hi, is there a way that i can take my div to the bottom center of my page? i tried diff attempts but none worked. any suggestion? thanks.
below is my last attmep:
<!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=utf-8" />
<meta name="xsoldier2006" content="xsoldier2006, 2006, xsoldier" />
<title>HENRY's IT notes</title>
<link href="../css/itCss.css" rel="stylesheet" type="text/css" />
</head>
<style type="text/css">
#wrapper
{
position: relative;
width: 800px;
}
#menu
{
position: relative;
width: 800px;
height: 100px;
background: url(../image/midBox.png);
}
#textBox
{
position: relative;
}
#footer
{
position:absolute;
margin-bottom: 0px;
}
</style>
<body bgcolor="#333333" text="#CCCCCC">
<div class="bxcen" id="wrapper">
<img src="../image/tech.jpg" alt="tech.jpg" />
<div class="bxcen" id="menu">
<table border="0" align="center" height="80" cellspacing="10">
<tr>
<td><a href="../index.php">Home</a></td>
<td></td>
<td><a href="network.php">Network</a></td>
<td></td>
<td><a href="java.php">Java </a></td>
<td></td>
<td><a href="cSharp.php">C#</a></td>
<td></td>
<td><a href="c++.php">C++ </a></td>
<td></td>
<td><a href="perl.php">Perl</a></td>
<td></td>
<td><a href="php.php">Php </a></td>
<td></td>
<td><a href="shellscript.php">Shell Script</a></td>
<td></td>
<td><a href="unix.php">*nix</a></td>
<td></td>
<td><a href="web.php">Web Design</a></td>
<td></td>
<td><a href="database.php">Database+SQL </a></td>
<td></td>
<td><a href="other.php">Else</a></td>
</tr>
</table>
</div> <!-- end menu div -->
<div class="bxcen" id="textBox">
<hr width="800" />
<br />
<br />
<br />
<br />
<p>****************************************************************************************************</p>
<p align="center">Note: All the programming codes and information are for my own reference only</p>
<p align="center">Note: All information is for studying purpose only</p>
<p align="center">Note: Displaying programming codes should not be copied and used without permission</p>
<p>****************************************************************************************************</p>
</div> <!-- end textbox div -->
<div id="footer">
<p align="center"><font size="-1"> @2009 xsoldier2006.com | Site design and development by Henry Li | Graphic Design by Wendy Wong</font></p>
</div>
</div> <!-- main div end -->
</body>
</html>