How to align text in the <caption> table on the left?
1 answer
Starting with Bootstrap 2.3 released on February 7, there is now a built-in class for this: see http://jsfiddle.net/panchroma/PjZqE/
HTML
<table class="table table-hover table-bordered">
<caption class="text-left">Caption Left</caption>
For details on all new features, see http://blog.getbootstrap.com/2013/02/07/bootstrap-2-3-released/
+12