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