Reputation: 151
Is there any way to make default direction of the whole CSS file RTL instead of LTR? If not, is there any tool that insert 'direction:rtl' in each CSS tag? My CSS file have 20000 lines of code and it's to hard to change all of them.
Upvotes: 0
Views: 1193
Reputation: 4778
Not necessarily the best solution, but an option is to use this universal css selector: *
* {
direction:rtl;
}
Upvotes: 2