Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
    width: 500px;
    height: 500px;
    background-color: lightblue;
}

</style>
</head>
<body>

<p>Click the "Try it" button to change the left margin 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.marginLeft = "100px";
}
</script>

</body>
</html>


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