Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

คอลัมน์สไตล์ HTML DOM คุณสมบัติ Gap


คุณสมบัติ HTML DOM Style columnGap ใช้เพื่อระบุช่องว่างระหว่างคอลัมน์ขององค์ประกอบ

ต่อไปนี้เป็นไวยากรณ์สำหรับ −

การตั้งค่าคุณสมบัติ columnGap -

object.style.columnGap = "length|normal|initial|inherit"

อธิบายคุณสมบัติข้างต้นดังนี้ −

ค่า คำอธิบาย
ความยาว การระบุความยาวที่ใช้กำหนดช่องว่างระหว่างคอลัมน์
ปกติ นี่คือค่าเริ่มต้นที่ระบุช่องว่าง 1em ระหว่างคอลัมน์
เริ่มต้น สำหรับการตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
สืบทอด การสืบทอดค่าคุณสมบัติหลัก

ให้เราดูตัวอย่างสำหรับคุณสมบัติ columnGap -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
   div {
      column-count: 4;
      column-gap: 50px;
      font-size: 1.2rem;
   }
</style>
<script>
   function changeColumnGap(){
      document.getElementsByTagName("div")[0].style.columnGap="10px";
      document.getElementById("Sample").innerHTML="The column gap is now decreased";
   }
</script>
</head>
<body>
   <div>
      This is some sample text inside div. This is the second div line.This is the third div
      line.This is the fourth div line. This is the fifth div line.This is the sixth div line.
      This is the seventh div line. This is the eigtth div line.This is the ninth div line. This is
      the tenth div line.This is the eleventh div line. This is the twelth div line.This is the  thirteenth div
      line.This is the fourteen line. This is the fifteen div line.This is the sixteen div line. This  is the seventeen div line. This is the eighteen div line.
   </div>
   <p>Change the above div column gap by clicking the below button</p>
   <button onclick="changeColumnGap()">Change Column Gap</button>
   <p id="Sample"></p>
</body>
</html>

ผลลัพธ์

คอลัมน์สไตล์ HTML DOM คุณสมบัติ Gap

เมื่อคลิกที่ “เปลี่ยนช่องว่างคอลัมน์” ปุ่ม −

คอลัมน์สไตล์ HTML DOM คุณสมบัติ Gap