Skip to content

Instantly share code, notes, and snippets.

@tlareg
Last active August 29, 2015 14:24
Show Gist options
  • Save tlareg/959924f5d79e45cffc03 to your computer and use it in GitHub Desktop.
Save tlareg/959924f5d79e45cffc03 to your computer and use it in GitHub Desktop.
vertical align middle multiline
.va-middle {
max-width: 100px;
line-height: /*set height*/;
}
.va-middle > span {
display: inline-block;
vertical-align: middle;
line-height: 1em; /*set line height back to normal*/
}
<div class="va-middle"><span>multiline text</span></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment