-moz-column 在 rtl 方向上无法正常工作

发布于 2024-10-17 14:46:09 字数 442 浏览 4 评论 0原文

我有一个固定高度、固定宽度和隐藏溢出的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〃温暖了心ぐ 2024-10-24 14:46:09

老问题但是:

这是一个 Firefox 错误 - 如果您尝试使用 -webkit-column-count: 4; 结合 direction:rtloverflow: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 with direction:rtl and overflow: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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文