Skip to content

Instantly share code, notes, and snippets.

@craiger522
Created November 6, 2013 17:55
Show Gist options
  • Save craiger522/7340935 to your computer and use it in GitHub Desktop.
Save craiger522/7340935 to your computer and use it in GitHub Desktop.
Centering with table cells display:table
.center-aligned { display: table; background: hsl(120, 100%, 97%); width: 100%; }
.center-core { display: table-cell; text-align: center; vertical-align: middle; }
.center-core img { width: 33%; height: auto; }
<div class="center-aligned">
<div class="center-core">
<img src="jimmy-choo-shoe.jpg">
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment