Reputation: 5382
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
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