This page answers some Frequently Asked Questions regarding CSS:
No color defined for [element in question]. Why is this?
#menu { /* Make the menu "float" in
the top left-hand corner */
position:absolute;
top:0px;
left:0px;
width:9em;
}
body { /* Make the body not overlap the menu */
margin-left:10em;
}
The HTML code (just before the </body> tag):
<p>All of your body's text goes here</p>
<!-- Start of the menu section -->
<div id="menu">
<a href="#">Your links go here</a>
<a href="#">More links go here</a>
<a href="#">Etc.</a>
</div>