Simple list

Author: Russ Weakley

Comments: The basic list has four "hooks" that can be used to apply styles. None of the samples use more than two hooks - an overall hook and an active hook.

Browser support chart

HTML
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>

CSS
None