body-topmargin-dynamic.html (396B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 this text should have a margin of 100px on the top and left 5 <p style="direction: rtl">this text should have a margin of 100px on the right</p> 6 <script type="text/javascript"> 7 document.body.setAttribute("topmargin", "100px"); 8 document.body.setAttribute("leftmargin", "100px"); 9 document.body.setAttribute("rightmargin", "100px"); 10 </script> 11 </body> 12 </html>