Skip to content

Instantly share code, notes, and snippets.

@junrillg
Created June 16, 2014 06:25
Show Gist options
  • Save junrillg/94f183fd21f10d3ee1f6 to your computer and use it in GitHub Desktop.
Save junrillg/94f183fd21f10d3ee1f6 to your computer and use it in GitHub Desktop.
Centering a DIV of Unknown Width
.content {
margin: 0 auto 8px;
display: table;
}
.content div {
display: table-cell;
}
<!--[if IE]>
.content {
display: block;
text-align: center;
}
.content div {
display: inline;
zoom: 1;
}
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment