Centering text in a table in Twitter Bootstrap

后端 未结 10 1794
予麋鹿
予麋鹿 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:45

    just give the surrounding a custom class like:

    
      1
      2
      3
    
    

    and have the css only select s that are inside an with your custom class.

    tr.custom_centered td {
      text-align: center;
    }
    

    like this you don't risk to override other tables or even override a bootstrap base class (like some of my predecessors suggested).

提交回复
热议问题