As indicated in the comments, you can set the focus from right to left (RTL). However, if the contents of your table are not in the language from right to left, you must additionally set the orientation in the elements of the contents of the table from left to right. Otherwise, they inherit RTL directivity, which will come as a surprise in many situations, as directivity also sets the overall focus of the text. This will not affect the normal text in the western language, but it will affect, for example, "4 (5)", which will look like "(5) 4" with an orientation of RTL.
So you have to set
table.result_table { direction: rtl; } table.result_table caption, table.result_table th, table.result_table td { direction: ltr; }
Jukka K. Korpela
source share