CSS 参考手册
CSS unicode-bidi 属性
unicode-bidi 属性与 direction 属性一起使用,来设置或返回文本是否被重写,以便在同一文档中支持多种语言。
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> #myDIV { margin: auto; width: 400px; height: 200px; background-color: lightblue; border: 1px solid black; direction: rtl; } </style> </head> <body> <p>点击“尝试一下”按钮,设置 DIV 元素的 unicode-bidi 属性:</p> <button onclick="myFunction()">尝试一下</button> <div id="myDIV">这是我的 DIV 元素。</div> <script> function myFunction() { document.getElementById("myDIV").style.unicodeBidi = "bidi-override"; } </script> </body> </html>
运行结果:
点击运行 »