【发布时间】: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