Text-align class for inside a table

后端 未结 20 1380
灰色年华
灰色年华 2020-11-28 00:10

Is there a set of classes in Twitter\'s Bootstrap framework that aligns text?

For example, I have some tables with $ totals that I want aligned to the r

20条回答
  •  孤街浪徒
    2020-11-28 00:54

    You can use this CSS below:

    .text-right {text-align: right} /* For right align */
    .text-left {text-align: left} /* For left align */
    .text-center {text-align: center} /* For center align */
    

提交回复
热议问题