如何将表格中的文字对齐到左边?

时间:2013-02-09 10:04:41

标签: text twitter-bootstrap alignment caption

美好的一天。

代码:

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

bootstrap.css中的哪个类会将<caption>中的文本对齐到左边?

如果可以在<caption>

中为我提供完整描述格式文字的链接

1 个答案:

答案 0 :(得分:14)

从2月7日发布的Bootstrap 2.3开始,现在有一个内置类来执行此操作:请参阅http://jsfiddle.net/panchroma/PjZqE/

HTML

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

有关所有新功能的详细信息,请参阅http://blog.getbootstrap.com/2013/02/07/bootstrap-2-3-released/