คุณสมบัติ MarginBottom สไตล์ DOM ส่งคืนและแก้ไขระยะขอบด้านล่างขององค์ประกอบในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
-
กลับ marginBottom
object.style.marginBottom
-
กำลังแก้ไข marginBottom
object.style.marginBottom = “value”
ตัวอย่าง
ให้เราดูตัวอย่างคุณสมบัติ marginBottom สไตล์ -
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
background: lightblue;
height: 100vh;
}
p {
border: 2px solid #fff;
}
.btn {
background: #db133a;
border: none;
height: 2rem;
border-radius: 2px;
width: 40%;
display: block;
color: #fff;
outline: none;
cursor: pointer;
}
</style>
</head>
<body>
<h1>DOM Style marginBottom Property Example</h1>
<p>
Hi! I'm awesome paragraph with some random text.
Hi! I'm awesome paragraph with some random text.
Hi! I'm awesome paragraph with some random text.
Hi! I'm awesome paragraph with some random text.
</p>
<button onclick="add()" class="btn">Add margin</button>
<script>
function add() {
document.querySelector('p').style.marginBottom = "50px";
}
</script>
</body>
</html> ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

คลิกที่ “เพิ่มระยะขอบ ” เพื่อเพิ่มระยะขอบด้านล่างให้กับองค์ประกอบย่อหน้า
