【问题标题】:How to Make Page Text Go From Right to Left?如何使页面文本从右到左?
【发布时间】:2021-05-18 07:22:31
【问题描述】:

我正在尝试将模板方向从 ltr 更改为 rtl。我在 div 中添加了 dir="rtl" 代码,但没有任何变化 我还尝试通过在 body 类和其他类中添加 direction: rtl; 来在 css 中做到这一点,但仍然无法正常工作!

{
    direction: rtl;
}

最后试了js代码还是不行

var children = document.children;
var i;
for (i = 0; i < children.length; i++) {
   children[i].style.direction = "rtl";
}

我该怎么做?

【问题讨论】:

    标签: html css right-to-left text-direction


    【解决方案1】:

    direction: rtl; 应该可以工作。

    片段:

    <div style="direction: rtl;">
        hi
    </div>

    【讨论】:

      猜你喜欢
      • 2018-01-05
      • 1970-01-01
      • 2011-02-03
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多