Skip to content

Instantly share code, notes, and snippets.

@rocknrollskyoveryou
Created December 25, 2015 13:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rocknrollskyoveryou/6dda39abf8bfd8fa479e to your computer and use it in GitHub Desktop.
Save rocknrollskyoveryou/6dda39abf8bfd8fa479e to your computer and use it in GitHub Desktop.
Vertical align <span> inside <div>
#html
<div>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
</div>
#scss
div{
height: 25px;
line-height: 25px;
text-align: center;
span{
display: inline-block;
vertical-align: middle;
line-height: normal;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment