Angelo Merlo
Angelo Merlo

Reputation: 437

How to vertically center a text in a column (bootstrap 4)?

How to vertically center a text in a column (bootstrap 4)? The structure is basic, see:

<div class="row">
    <div class="col-md-6">
        <span>Text to center</span>
    </div
</div>

Ty guys!

Upvotes: 31

Views: 36701

Answers (2)

Carol Skelly
Carol Skelly

Reputation: 362270

Use auto-margins (my-auto), or use the flexbox utilities..

<div class="container">
    <div class="row">
        <div class="col-md-6 align-self-center">
            <span>Text to center</span>
        </div>
        <div class="col-md-6">
            <p>
            ..
            </p>
        </div>
    </div>
</div>

http://www.codeply.com/go/oy8H1bUOL1

Also, there are several other Bootstrap vertical centering options explained in my other answer.

Upvotes: 13

Pascal Martineau
Pascal Martineau

Reputation: 1226

You can add the my-auto class to the parent <div class="col-md-6"> to achieve this. This class sets automatic margins on the y-axis, see the link above for more details.

It would look like this:

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet"/>

<div class="container">
  <div class="row">
    <div class="col-xs-6 my-auto">
      <span>Text to center</span>
    </div>
    <div class="col-xs-6">
      <h1>Hello</h1>
      <h1>Hello</h1>
      <h1>Hello</h1>
    </div>
  </div>
</div>

You might be tempted to use vertical alignment utilities but these will only work on inline, inline-block, inline-table, and table cell elements.

Upvotes: 78

Related Questions