Lego2012
9/26/2016 - 10:39 PM

Centering a DIV of unknown width

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]-->