Reputation: 849
I was able to apply rtl to all the content in my html pages. But title tags are still coming normally
How can we apply any class to title or tooltips ?
Upvotes: 1
Views: 201
Reputation: 1889
You need to start the title with Unicode RIGHT-TO-LEFT OVERRIDE character ‮
See http://unicode.org/reports/tr9/
Eg.
<a href="#" title="‮ My text" />Test</a>
Depending on your use case I would suggest doing it through javascript/jQuery(may be for particular locale only) for all title tags in a page.
Upvotes: 1