Bootstrap css: change few div to rtl

i have below fiddle link currently as it is rtl, but i want few div (English Language) as ltr, any help would be appreciated.

http://jsfiddle.net/RoryMcCrossan/jZm8D/1/'>

Upvotes: 1

Views: 1086

Answers (1)

dresdain
dresdain

Reputation: 174

Create a class that makes text ltr and add it to div elements that contains English language.

.ltr {
        direction: ltr !important;
    }

Upvotes: 4

Related Questions