Skip to content

Instantly share code, notes, and snippets.

@szpakoli
Created May 10, 2013 14:07
Show Gist options
  • Save szpakoli/5554612 to your computer and use it in GitHub Desktop.
Save szpakoli/5554612 to your computer and use it in GitHub Desktop.
CSS Button Hover Transition: Generic starter template for a simple hover / slide effect
.button {
display: inline-block;
height: 60px;
line-height: 60px;
overflow: hidden;
position: relative;
text-align: center;
border: 1px solid #ddd;
padding: 0 15px;
}
.label {
display: block;
height: 100%;
position: relative;
top: 0%;
transition: top 0.35s;
width: 100%;
}
.button:hover .label {
top: -100%;
}
<div class="button">
<span class="label">Button Label</span>
<span class="label">Button Label</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment