Centering text in a table in Twitter Bootstrap

Sven picture Sven · Jul 26, 2012 · Viewed 377.7k times · Source

For some reason, The text inside the table still is not centered. Why? How do I center the text inside the table?

To make it really Clear: For example, I want "Lorem" to sit in the middle of the four "1". ​

JSFiddle

Answer

Alex Che picture Alex Che · Feb 17, 2014

In Bootstrap 3 (3.0.3) adding the "text-center" class to a td element works out of the box.

I.e., the following centers some text in a table cell:

<td class="text-center">some text</td>