Thuộc tính HTML DOM Style columnGap được sử dụng để chỉ định khoảng cách giữa các cột của một phần tử.
Sau đây là cú pháp cho -
Đặt thuộc tính columnGap -
object.style.columnGap = "length|normal|initial|inherit"
Các thuộc tính trên được giải thích như sau -
Giá trị | Mô tả |
---|---|
Chiều dài | Chỉ định độ dài được sử dụng để đặt khoảng cách giữa các cột |
Bình thường | Đây là giá trị mặc định xác định khoảng cách 1em giữa các cột. |
Ban đầu | Để đặt thuộc tính này thành giá trị ban đầu. |
Kế thừa | Để kế thừa giá trị thuộc tính mẹ |
Chúng ta hãy xem một ví dụ cho thuộc tính columnGap -
Ví dụ
<!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>
Đầu ra
Khi nhấp vào “Thay đổi khoảng cách cột” nút -