<body>
<script>
// لا يعمل
document.body.style.margin = 20;
alert(document.body.style.margin); // '' (سلسلة نصية فارغة، إهمال عملية الإسناد)
// يعمل بعد إضافة الوحدة
document.body.style.margin = '20px';
alert(document.body.style.margin); // 20px
alert(document.body.style.marginTop); // 20px
alert(document.body.style.marginLeft); // 20px
</script>
</body>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.