Edit This Code:
<!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>Click the "Try it" button to set the unicode-bidi property of the DIV element:</p>

<button onclick="myFunction()">Try it</button>

<div id="myDIV">This is my DIV element.</div>

<script>
function myFunction() {
    document.getElementById("myDIV").style.unicodeBidi = "bidi-override";
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy