编辑下面的代码:【加编码】
<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>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂