Tabbed navigation depicts file folder tabs as a metaphor to navigate a website. In this article I'll provide the code for tabbed navigation based on a list that uses only CSS, and one that uses CSS combined with graphic images.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

[About BTH]  [User Agreement]  [Privacy Policy]  [Site Map]  [Contact Form]  [Advertise on BTH]  [News Feed]

Google
Web
This Site

Easy CSS Tabbed Navigation

Tabbed navigation depicts file folder tabs as a metaphor to navigate a website. The tab images may be static or dynamic. Dynamic tabs display a rollover effect when you move your mouse pointer over them, and the currently selected tab will change shade or color.

Tabbed navigation

There are several different ways to construct tabbed navigation. You can use an html table or list, you can combine this with Cascading Style Sheets (CSS), or graphic images, or both. In this article I'll provide the code for tabbed navigation based on a list that uses only CSS, and one that uses CSS combined with graphic images.

Shown below is the html code for the unordered list used to create the tabbed navigation. Place this code near the top of your webpage.

<ul id="nav">
  <li id="home_tab"><a href="home.htm">Home</a></li>
  <li id="about_tab"><a href="about.htm">About</a></li>
  <li id="products_tab"><a href="products.htm">Products</a></li>
  <li id="contact_tab"><a href="contact.htm">Contact</a></li>
</ul>

Note that each html element opening tag has an id attribute and that each list item contains a link. Place the CSS code used to style the list in a separate file named nav.css which will be linked to the webpage by placing the line shown below into the head section of your webpage.

<link type="text/css" rel="stylesheet" href="nav.css">

The first style that we define is for the list as a whole. The code for this is shown below.

#nav
{
list-style: none;
width: 100%;
height: 38px;
margin: 0;
padding-top: 10px;
padding-right: 0;
padding-bottom: 0;
padding-left: 32px;
background-color: #a040a0;
}

This code styles the properties of the list's background, which becomes the tabbed navigation bar. The important properties here are the height and padding- top, which must be set to the correct dimension to place the tabs at the bottom of the navigation bar.

Note that I'm not using shorthand for setting multiple properties of a selector in one declaration. In other words, the lines shown below;

padding-top: 10px;
padding-right: 0;
padding-bottom: 0;
padding-left: 32px;

could be replaced with the line shown below;

padding: 10px 0 0 32px;

I feel that in some cases, using such shorthand can be confusing to the beginner.

Web Design Sections

RSS Feed RSS Feed

Cascading Style Sheets
Understanding CSS Selectors
The CSS Box Model
Understanding CSS Positioning
Add Style to Your Blockquotes
How to Overlay Text on an Image
Display Overlapping Images on Your Webpage
Style Your Imagemap Tooltips
How to Style a List
How to Style a Table
How to Change the Mouse Pointer
How to Use a Starburst on Your Web Page
How to Use a Pull Quote
Easy Scrollable Area Code
Easy CSS Buttons
Create CSS Button Rollovers
Create Custom Horizontal Rules
Easy CSS Popup Windows
Add Drop Shadows to Your Pictures
Easy Text Drop Shadows
Spice Up Your Web Forms with Color and Graphics
Setting a Larger First Letter
Make a Fixed-width Variable-height Round Cornered Box
Easy Visual Effects to Spice Up Your Webpage
HTML, XHTML, and CSS Bible
Web Designer's Reference
Pro CSS Techniques
Code for Horizontal Drop-down Menu Bar
Easy Rollover Menu Code
Easy CSS Tabbed Navigation
Easier Expanding Menu Code
Easy Three-level Expanding Menu Code
Easy Floating Menu Code


[Site User Agreement]  [Advertise on This site]  [Search This Site]  [Contact Form]
Copyright©2001-2009 Bucaro TecHelp P.O.Box 18952 Fountain Hills, AZ 85269