How to align text in the <caption> table on the left?

Good afternoon.

the code:

<table class="table table-hover table-bordered">
<caption class="pull-right">Pays</caption>
<thead>

What class in bootstrap.css aligns text to the <caption>left?

If you can give a link to the full text in the format <caption>

+5
source share
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
source

All Articles