Centering text in a table in Twitter Bootstrap

后端 未结 10 1803
予麋鹿
予麋鹿 2020-12-12 15:48

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 "L

10条回答
  •  误落风尘
    2020-12-12 16:23

    I had the same problem and a better way to solve it without using !important was defining the following in my CSS:

    table th.text-center, table td.text-center { 
        text-align: center;
    }
    

    That way the specifity of the text-center class works correctly in tables.

提交回复
热议问题