Forum Moderators: not2easy
I vaguely recall a thread or some links to a cross-brosers horizontal nav bar made of <ul>. Anyone know what I mean? - I've never tried it...
Any drawbacks or pitfalls? I need to use hovers for a traditional top nav style bar.
If anyone has a code example that's pretty robust I'd be MOST appreciative ;)
Cheers
Nick
<html>
<head>
<title>Untitled</title>
<style type="text/css">#vert li {
list-style: circle;
}#hort li {
float: left;
padding-left: 1em;
}</style>
</head>
<body><ul id="vert">
<li><a href="#">My link</a></li>
<li><a href="#">Another link</a></li>
<li><a href="#">More links</a></li>
<li><a href="#">Blah</a></li>
</ul><ul id="hort">
<li><a href="#">My link</a></li>
<li><a href="#">Another link</a></li>
<li><a href="#">More links</a></li>
<li><a href="#">Blah</a></li>
</ul></body>
</html>
Basically, the only pitfall is that the horizontal list doesn't work well with ordered lists.
[webmasterworld.com...]