We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

koorb on 04/18/08


Tagged

css center tabs


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

Wiederkehr
basicmagic


Centered Tabs with CSS


Published in: CSS 


URL: http://24ways.org/2005/centered-tabs-with-css

  1. #navigation ul, #navigation ul li {
  2. list-style: none;
  3. margin: 0;
  4. padding: 0;
  5. }
  6.  
  7. #navigation ul {
  8. text-align: center;
  9. }
  10.  
  11. #navigation ul li {
  12. display: inline;
  13. margin: 0 .75em;
  14. }

Report this snippet 

You need to login to post a comment.