Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
网页上的镜像怎么看。我的网页必须兼容英语和阿拉伯语。当用户选择阿拉伯语时,网页转换为英语正常布局的镜像视图。任何布局套件都适用于 960 中的正常视图和镜像视图。
添加dir="rtl"到您的 HTML 元素以使文本从右到左,例如
dir="rtl"
<html dir="rtl">
在那里提及它也是阿拉伯语也是一个好主意:
<html dir="rtl" lang="ar">
您还可以dir在元素上使用该属性:例如
dir
<div dir="rtl">This is right to left</div>
这意味着如果您的网站在整个页面都是 rtl 时出现故障,您可以只定位一点点。