3

我有一个固定高度、固定宽度和隐藏溢出的 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;
}
4

1 回答 1

1

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).

于 2011-09-14T15:53:41.003 回答