-moz-column 在 rtl 方向上无法正常工作
我有一个固定高度、固定宽度和隐藏溢出的 div 容器 我需要在 4 列中显示文本,
问题是:
使用方向 'rtl' ,firefox 显示最新的 4 列并隐藏其余的 但我想显示前 4 列并隐藏其余部分,这是通过将方向切换为“ltr”来完成的,但它是阿拉伯语内容,必须使用“rtl”方向来完成
任何帮助,请!!
如果我不能清楚地讨论这个问题,我很抱歉
<div class="article">Arabic Content here</div>
.article {
-moz-column-count: 4;
-moz-column-gap: 10px;
-moz-column-width: 40px;
height: 171px;
width: 500px;
overflow: hidden;
text-align: justify;
}
I have a div container with fixed height , fixed width and overflow hidden
I need to display text in 4 columns
The problem is :
with direction 'rtl' , firefox display the latest 4 columns and hide the rest
but I want to display the first 4 columns and hide the rest which is done by switching the direction to 'ltr' but it's arabic content and it have to be done using 'rtl' direction
any help , please!!
and sorry if I couldn't discuss the issue clearly
<div class="article">Arabic Content here</div>
.article {
-moz-column-count: 4;
-moz-column-gap: 10px;
-moz-column-width: 40px;
height: 171px;
width: 500px;
overflow: hidden;
text-align: justify;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
老问题但是:
这是一个 Firefox 错误 - 如果您尝试使用
-webkit-column-count: 4;
结合direction:rtl
和overflow:hidden< /code> 你在 webkit 浏览器中得到了你想要的结果。
您必须等待修复程序生效(目前在 FF 6.0.2 中仍然存在 bug)。
Old question but:
This is a firefox bug - if you try using
-webkit-column-count: 4;
combined withdirection:rtl
andoverflow:hidden
you get your desired result in webkit browsers.You will have to wait until a fix goes in (currently in FF 6.0.2 it's still bugged).