Text-align class for inside a table

后端 未结 20 1342
灰色年华
灰色年华 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 01:03

    Use text-align:center !important. There may be othertext-align css rules so the !important is important.

    table,
    th,
    td {
      color: black !important;
      border-collapse: collapse;
      background-color: yellow !important;
      border: 1px solid black;
      padding: 10px;
      text-align: center !important;
    }
    Center aligned text
    Center aligned text Center aligned text

提交回复
热议问题