Skip to content

Instantly share code, notes, and snippets.

@pahund
Created April 24, 2012 12:54
Show Gist options
  • Save pahund/2479405 to your computer and use it in GitHub Desktop.
Save pahund/2479405 to your computer and use it in GitHub Desktop.
slide out tabs
/**
* slide out tabs
*/
li {
float: left;
width: 100px;
height: 10px;
list-style: none;
display: block;
border: 3px solid black;
padding: 5px;
margin-right: 4px;
border-radius: 10px 10px 0 0;
position: relative;
}
li:hover {
transition: 1s;
height: 20px;
top: -10px;
}
<ul>
<li>Photos</li>
<li>Videos</li>
<li>Music</li>
<li>Lyrics</li>
</ul>
{"view":"split","fontsize":"70","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment