Reputation: 309
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
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