I have figured it out, it isn't the best solution, but it gets the job done.
XHMTL:
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
<title>Alignment Example</title>
</head>
<body>
<div id="container">
<div id="content">It's on!

</div>
</div>
</body>
</html>
CSS:
CODE
#container {
border: 1px solid #000;
height: 500px;
width: 750px;
}
#content {
border: 1px solid #00F;
float: right;
height: 25px;
margin: 465px 0px 0px 0px;
width: 100px;
}
I will figure out a better way. Maybe one of the more established web developers could help us out here?
Edit: There isn't suppose to be a smiley in my code, i'm just not there tonight. I also cleaned up the code a bit, this isn't right, i've reread 3 chapters in this damn book and still don't see what's going on.