Horizontal Lists

First published on 2006-05-31, updated on 2008-06-23.

Websites often have a set of links in their footer, like this:

Logically, this is a list. But <ol> and <ul> are displayed vertically by default. With CSS, you can use the correct markup and get the presentation you want.

This article avoids float, so it’s easy to use in existing CSS layouts.

Old Method

A <div>, a <p> or both contain several <a> elements, with a vertical bar between them:

<div id="footer">
<p><a href="#top">Top of Page</a> | <a href="/about/accessibility">Accessibility Statement</a> | <a href="/about/disclaimer">Website Policy &amp; Disclaimer</a> | <a href="/search">Search</a> | <a href="/sitemap">Site Map</a></p>
</div>

Decorative Characters

If you want to change the seperator you have to change the markup.

The decorative characters only add noise. Screen readers will normally say “bar” or “dash” or “dot” for these characters. Normally, “link” will be annouced for each <a> and “item” may be announced for each <li>.

Graphics

An <img> element could be used between each link:

<div id="footer">
<p><a href="#top">Top of Page</a> <img width="11" height="3" src="/images/line.gif" alt=""> <a href="/about/accessibility">Accessibility Statement</a> <img width="11" height="3" src="/images/line.gif" alt=""> <a href="/about/disclaimer">Website Policy &amp; Disclaimer</a> <img width="11" height="3" src="/images/line.gif" alt=""> <a href="/search">Search</a> <img width="11" height="3" src="/images/line.gif" alt=""> <a href="/sitemap">Site Map</a></p>
</div>

Graphical separators are now present:

It adds a lot of markup, though.

New Method

  1. Choose the most appropriate HTML elements.
  2. Apply CSS to get the right look.

The First Amendment

<ul> is an “unordered list”, perfect for grouping the links together. <li> is a “list item”, perfect for making each link a separate item.

<div id="footer">
<ul>
 <li class="first"><a href="#top">Top of Page</a></li>
 <li><a href="/about/accessibility">Accessibility Statement</a></li>
 <li><a href="/about/disclaimer">Website Policy &amp; Disclaimer</a></li>
 <li><a href="/search">Search</a></li>
 <li><a href="/sitemap">Site Map</a></li>
</ul>
</div>

Some newlines help the markup stay readable.

Practical Effect of Good Markup

Assistive devices provide users with many different features, including:

These features work best when good markup is used.

The Right Look

<ul> is usually displayed as a vertical list of bullet points. This CSS makes it horizontal:

/* Footer Links */
#footer ul {
 margin: 0.25em 0;
 padding: 0 1em;
 list-style: none;
}
#footer li {
 display: inline;
 margin: 0;
 padding: 0 0.2em 0 0.5em;
 border-left: 1px solid;
}
#footer .first {
 padding-left: 0;
 border: 0;
}

What the CSS Does

How it Looks

Graphics

The CSS background property can place a decorative image between each item. The markup stays exactly the same. The only changes are to the CSS:

/* Footer Links */
#footer ul {
 margin: 0.25em 0;
 padding: 0 1em;
 list-style: none;
}
#footer li {
 display: inline;
 margin: 0;
 padding: 0 0.2em 0 0.5em;
 background: url(line.gif) left center no-repeat;
}
#footer a {
 margin-left: 3px; /* Width of the graphic */
}
#footer .first {
 padding-left: 0;
 background: none;
}
#footer .first a {
 margin-left: 0;
}

The padding in em lets the gaps scale with text size. The margin-left in px creates space for the graphic.

How it Looks

Analysis

Better markup makes styling with CSS more efficient, more versatile and easier to adjust.

It also helps users of assistive technologies, improving accessibility.

Recommendation

Use <ul> and <li> styled with CSS for horizontal lists. Use better images than these demos.