Skip to content

Instantly share code, notes, and snippets.

@marcusandre
Created February 26, 2015 21:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusandre/4c3616835d021e9eeec5 to your computer and use it in GitHub Desktop.
Save marcusandre/4c3616835d021e9eeec5 to your computer and use it in GitHub Desktop.
Correct inline-block elements
<div style="text-align: center;">
  <div class="inline-block">Element</div>
  <div class="inline-block">Element</div>
  <div class="inline-block">Element</div>
</div>
.inline-block {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
  *display: inline;
  font-size: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment