2017-10-17 150 views
1

我使用jquery-steps插件來製作嚮導,但問題是我無法使步驟從右到左對齊。如何使用從右到左的步驟jquery步驟嚮導

.eg:我的步驟:1.step一個2.step 2 我的意料:2.step 2個1.step上(還我使用的是RTL語言:))

注:我米使用動態jquery的步驟使用(You can check it here

我想:

$(document).ready(function() { 
    $("#wizard").steps(
    rtl: true 
); 
}); 

,但沒有工作,我該怎麼解決呢?問候

+0

你試過嗎? https://jsfiddle.net/2quw4hea/ –

回答

0

你有沒有試過這個:?

.wizard>.steps>ul>li, .wizard>.actions>ul>li { 
    float: right; 
}