从右到左语言的网站(阿拉伯语、希伯来语)
我目前正在为 Django 项目开发多语言界面。但是当我开始研究阿拉伯语和希伯来语时,我注意到 dir="rtl" 到 html 标记之后的所有页面都混乱了(根据 http://www.w3.org/International/tutorials/bidi-xhtml/)
这是否意味着我需要针对从右到左的语言使用单独的样式表?
I currently developing a multi-language interface for a Django project. But when I started to work on Arabic and Hebrew languages, I noticed all pages messed up after dir="rtl" to html tag (according to instructions on http://www.w3.org/International/tutorials/bidi-xhtml/)
Does that mean I need separate stylesheets for right-to-left languages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要将 style 属性放在 html 标签中。
仅在实际使用阿拉伯语和希伯来语的 div 内使用
dir='rtl'
属性。不适用于整个页面。Do not put the style attribute to the html tag.
Use the
dir='rtl'
attribute only inside the div's where you actually use Arabic and Hebrew. Not for the entire page.除了将 dir="rtl" 添加到标签之外,您还需要做的是翻转样式表。
创建一个 rtl.css 样式表,它将充当默认样式表的镜像。例如。如果你的 style.css 有下面的规则:
在 rtl.css 中它将像这样翻转:
检查这个: http://rtl-this.com/tutorial/3- Different-ways-rtl-your-css
What you need to do in addition to adding the dir="rtl" to the tag is flipping your stylesheets.
Create an rtl.css stylesheet which will act like a mirror to your default stylesheet. For example. If your style.css has this rule below:
In the rtl.css it will be flipped like this:
Check this: http://rtl-this.com/tutorial/3-different-ways-rtl-your-css