Centering text in a table in Twitter Bootstrap

来源:互联网 发布:js封装对象 编辑:程序博客网 时间:2024/06/13 07:08

http://stackoverflow.com/questions/11678298/centering-text-in-a-table-in-twitter-bootstrap

.table td 's text align is set to left, rather than center:

Adding this should center it:

.table td {   text-align: center;   }


0 0