Skip to content

Instantly share code, notes, and snippets.

@madkap
Last active August 29, 2015 14:07
Show Gist options
  • Save madkap/269beffb901331b81fab to your computer and use it in GitHub Desktop.
Save madkap/269beffb901331b81fab to your computer and use it in GitHub Desktop.
vertical-align with css
%vertical-align {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
/* or with bourbon
@include transform(translateY(-50%));
*/
}
.element p {
@extend %vertical-align;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment