在Twitter引導程序3中,我在div中添加了一些圖形,併爲默認頁面添加了「右拉」。 當我改變方向爲RTL文本等成功翻轉,但右拉不切換到左拉。 我該怎麼做才能讓LTR右邊的圖標和左邊的RTL?Twitter Bootstrap右拉和左拉用於RTL語言
(當然可以添加javascript代碼並檢查頁面主體中的所有拉取權限,並將其更改爲左拉,但我不喜歡JS解決方案。我試過this,但它沒有幫助。)
小提琴: http://jsfiddle.net/mavent/dKPE3/1/
<div id="div1" class="alert alert-info">This is my fancy description <span class="badge badge-info">122</span><a class="btn btn-lg pull-right" style="padding:0;" data-toggle="collapse" data-target="#aaa"><i class="glyphicon glyphicon-chevron-down twitp_toggleable_chevron"></i></a>
</div>
<div id="div2" class="alert alert-info">هذا هو بلدي وصف الهوى <span class="badge badge-info">122</span><a class="btn btn-lg pull-right" style="padding:0;" data-toggle="collapse" data-target="#aaa"><i class="glyphicon glyphicon-chevron-down twitp_toggleable_chevron"></i></a>
</div>
如果您在Bootstrap v3.2.0(https://github.com/twbs/bootstrap/pull/12840)中使用即將推出的RTL支持,它當前會扭轉'.pull-left/right'的方向。 – cvrebert
@trante簡而言之,當文本正確的時候,你想要做的就是將圖形向左移動,對吧? –