Mike Glaz
Mike Glaz

Reputation: 5382

How do you center form controls with Bootstrap?

I can't figure out how to center form controls in Bootstrap. I try wrapping everything in a .center div but that centers some things and screws up others.

.center
{
  text-align: center;
}

Upvotes: 2

Views: 2942

Answers (1)

Saeed D.
Saeed D.

Reputation: 1176

You can use the text-center class

<p class="text-center">Center aligned text.</p>

Other text alignment classes are

<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
<p class="text-justify">Justified text.</p>
<p class="text-nowrap">No wrap text.</p>

For detailed information please visit http://getbootstrap.com/css/

Upvotes: 1

Related Questions