Mohamed Osman
Mohamed Osman

Reputation: 151

CSS make default direction rtl instead of ltr

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

Answers (1)

Andy
Andy

Reputation: 4778

Not necessarily the best solution, but an option is to use this universal css selector: *

* {
    direction:rtl;
}

Upvotes: 2

Related Questions