I created a webpage with right to left (rtl) direction. Below is the html tag I used:
<html dir="rtl">
However, I needed two parts of the webpage to be written from left to right (ltr), so I added the dir attribute to this div:
<div dir="ltr">
Interestingly, while this setup worked perfectly on Google Chrome and Mozilla Firefox, it failed to display correctly on Safari version 8.0 running on Mac OS X 10.10 within a virtual machine.
Have you encountered similar issues with Safari before?
Could this possibly be related to a CSS problem?