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
$
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 */