7

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>

madth3
  • 7,275
  • 12
  • 50
  • 74
Leo Loki
  • 2,457
  • 6
  • 24
  • 29

1 Answers1

14

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

David Taiaroa
  • 25,157
  • 7
  • 62
  • 50
  • taiaroa you dont see all my question. i ask `name class in bootstrap.css that align text in `. original name class not new created class. – Leo Loki Feb 10 '13 at 00:19
  • See my updated answer. Until two days ago there wasn't a built-in class, but there is now. – David Taiaroa Feb 10 '13 at 00:49