Skip to content

Instantly share code, notes, and snippets.

@fmal
Created January 14, 2013 22:47
Show Gist options
  • Select an option

  • Save fmal/4534262 to your computer and use it in GitHub Desktop.

Select an option

Save fmal/4534262 to your computer and use it in GitHub Desktop.
Center elements vertically
.inliner {
height: 100%;
}
.inliner,
.inliner + * {
display: inline-block;
vertical-align: middle;
}
<i class="inliner"></i>
<div>Sample content</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment