Skip to content
Thomas Czogalik edited this page Dec 27, 2019 · 4 revisions

center a <div> in another <div>?

.inner {
  display: table;
  margin: 0 auto;
}

<div style="width:100%">
  <div class="inner">Foo foo</div>
</div>

How to make <div> not larger than its contents?

.div-wrap-center {
  display: table;
  margin: 0 auto;
}
Clone this wiki locally