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