Javascript examples for CSS Style Property:marginRight
Change the right margin of a <div> element back to "normal":
<!DOCTYPE html> <html> <head> <style> #myDiv {/*w w w. j a va2 s . co m*/ border: 1px solid #FF0000; margin-right: 75px; } </style> </head> <body> <div id="myDiv">This is a div.</div> <br> <button type="button" onclick="myFunction()">Change right margin</button> <script> function myFunction() { document.getElementById("myDiv").style.marginRight = "0px"; } </script> </body> </html>