Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active November 6, 2018 06:23
Show Gist options
  • Save vxhviet/47f7a605d0998876fd5f53d7ae22ecb0 to your computer and use it in GitHub Desktop.
Save vxhviet/47f7a605d0998876fd5f53d7ae22ecb0 to your computer and use it in GitHub Desktop.

How to Center Text in div:

SOURCE, SOURCE, SOURCE

Bootstrap 4:

<div class="row d-flex">
    <span class="mx-auto" id="quantity">Something</span>
</div>

Or pure CSS:

#outer {
  width: 100%;
  height: 100vh;
  display: flex;
}

#inner {
  margin: auto;
}
<div id="outer" class="container">
  <div id="inner">
    <h1>Heading</h1>
    <p>Some content</p>
  </div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment