View Single Post
  #5 (permalink)  
Old Jan 29th, 2008, 08:54
MikeHopley MikeHopley is offline
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Spacing text links in a single DIV

This is not a good choice of markup. Use a list instead:

Code: Select all
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About us</a></li>
...
...
</ul>
Then use CSS to format this as you please -- make it horizontal, remove the bullets, whatever.
Reply With Quote