Skip to content

Instantly share code, notes, and snippets.

@greenboyroy
Created July 3, 2014 12:10
Show Gist options
  • Save greenboyroy/ef2d0d6e038b16ebd576 to your computer and use it in GitHub Desktop.
Save greenboyroy/ef2d0d6e038b16ebd576 to your computer and use it in GitHub Desktop.
Pure CSS, single row, equal width items.
<ul class="tabs primary-nav">
<li class="tabs__item">
<a href="#" class="tabs__link">Home</a>
</li>
<li class="tabs__item">
<a href="#" class="tabs__link">About</a>
</li>
<li class="tabs__item">
<a href="#" class="tabs__link">Work</a>
</li>
<li class="tabs__item">
<a href="#" class="tabs__link">Contact</a>
</li>
</ul>
/**
* Tabs object.
*
* 1. Tables (kinda) for layout!
* 2. This is the magic bit; make all children occupy equal width.
* 3. Required to make the tabs fill their container.
* 4. Make each tab pack up horizontally.
* 5. Ensure the hit area covers the whole tab.
*/
.tabs {
margin: 0;
padding: 0;
list-style: none;
display: table; /* [1] */
table-layout: fixed; /* [2] */
width: 100%; /* [3] */
}
.tabs__item {
display: table-cell; /* [4] */
}
.tabs__link {
display: block; /* [5] */
}
/**
* Primary nav. Extends `.tabs`.
*
* 1. Stop tabs’ corners leaking out beyond our 4px round.
*/
.primary-nav {
text-align: center;
border-radius: 4px;
overflow: hidden; /* [1] */
}
.primary-nav a {
padding: 1em;
background-color: #BADA55;
color: #fff;
font-weight: bold;
text-decoration: none;
}
.primary-nav a:hover {
background-color: #A3C43B;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment