Tabs

Trying to save space or condense the amount of content you have showing on the screen? Tabs are a great way to organize content by category or topic. Javascript was added in the example to show how they might function.

Example Usage:

Code Example:

    
        <ul class="tabs">
            <li><a class="tab active" href="#">Tab One</a></li>
            <li><a class="tab" href="#">Tab Two</a></li>
            <li><a class="tab" href="#">Tab Three</a></li>
        </ul>
    
Up Next: »