Leo Loki
Leo Loki

Reputation: 2575

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

Good day.

Code:

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

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

If may give me link on full description format text in <caption>

Upvotes: 7

Views: 13355

Answers (1)

David Taiaroa
David Taiaroa

Reputation: 25475

As of Bootstrap 2.3 released Feb 7th, there is now a built-in class to do this: see http://jsfiddle.net/panchroma/PjZqE/

HTML

<table class="table table-hover table-bordered">
<caption class="text-left">Caption Left</caption>  

See http://blog.getbootstrap.com/2013/02/07/bootstrap-2-3-released/ for full details of all the new features

Upvotes: 14

Related Questions