SAL*_*man 5 html twitter-bootstrap
我想将 twitter bootstrap carousel 的标题文本向右对齐。我怎样才能这样做呢?
<div class="carousel-inner">
<div class="item active">
<img src="img/img1.png" alt="" class="img-responsive">
<div class="carousel-caption right-caption">
This is the text I want to put on the right.
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
尝试使用 class text-right 来换行文本。
<div class="carousel-inner">
<div class="item active">
<img src="img/img1.png" alt="" class="img-responsive">
<div class="carousel-caption right-caption text-right">
This is the text I want to put on the right.
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)