rtl 中的 HTML 列表内容方向
我有一个简单的 HTML 无序列表
<ul>
<li><a href="#">link1</a> <a href="#">link2</a> text1</li>
<li>text1 <a href="#">link</a></li>
<li>text1 text2</li>
</ul>
如果我有正常的 ltr 布局,最终内容看起来像这样
link1 link2 text1
text1 链接
text1 text2
但是,如果列表项内的内容是混合的,并且方向设置为 rtl,我会得到一团糟
link2 text1 link1
text1 链接
text2 text1
这意味着只有包含文本的列表元素才会正确反转。关于如何使其正常工作有什么想法吗?
编辑: 看来内容流取决于实际内容。像这样的简单例子是行不通的
<ul dir="rtl">
<li>
<a href="#">12:30 - 13:30</a>
some text
<a href="#">link text</a>
</li>
</ul>
<ul dir="ltr">
<li>
<a href="#">12:30 - 13:30</a>
some text
<a href="#">link text</a>
</li>
</ul>
I have a simple HTML unordered list
<ul>
<li><a href="#">link1</a> <a href="#">link2</a> text1</li>
<li>text1 <a href="#">link</a></li>
<li>text1 text2</li>
</ul>
If I have normaln ltr layout, final content looks like this
link1 link2 text1
text1 link
text1 text2
However, if the content inside a list item is mixed, and direction is set to rtl, I get a complete mess
link2 text1 link1
text1 link
text2 text1
which means only the list element containing text only gets reversed properly. Any ideas on how to get this working correctly?
edit:
It seems that the content flow depends on the actual content. A simple example like this doesn't work
<ul dir="rtl">
<li>
<a href="#">12:30 - 13:30</a>
some text
<a href="#">link text</a>
</li>
</ul>
<ul dir="ltr">
<li>
<a href="#">12:30 - 13:30</a>
some text
<a href="#">link text</a>
</li>
</ul>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
开箱即用
使用标记的属性
dir="RTL"
仅将内容定位在右侧
这完全取决于您如何编写内容,更多信息在这里
It works out of the box
The attribute
dir="RTL"
using your markup only position the content at the right side
It's all a matter of how you write your content, more information here
你可以使用阿拉伯语的 Html/CSS 样式
you could this Html/CSS styling for Arabic Language
如果“dir”在页面上不起作用,只需使用以下内容:
对于示例“li”标签:
If "dir" does not work on the page, just use this:
For a sample "li" tag: