Rtl support in tinymce addone

I hope this message finds you well. I am writing to discuss a technical issue regarding the usage of the Tinymce editor. Currently, each time I wish to make the editor RTL (Right-to-Left), I manually insert “

” in the source code. However, I am interested in finding a more efficient solution that will allow the editor to be permanently set to RTL.

Upon reviewing the addon’s webpage, I came across the information stating that custom code can be written in the “_tinymce_custom.css” file. Therefore, I kindly request your guidance on the specific code that I should include in order to ensure that the editor remains RTL at all times.

Thank you in advance for your assistance. I greatly appreciate your support.

Best regards,

This works for me:

body {
  direction: rtl;
}

Thank you sincerely for your tremendous assistance. It has worked flawlessly for me.