คุณสมบัติ HTML DOM Style columnRuleStyle ใช้เพื่อกำหนดหรือส่งคืนรูปแบบของกฎของคอลัมน์
ต่อไปนี้เป็นไวยากรณ์สำหรับ −
การตั้งค่าคุณสมบัติ columnRuleStyle -
object.style.columnRuleStyle = "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset| initial|inherit"
ค่าคุณสมบัติข้างต้นมีคำอธิบายดังนี้ −
ค่า | คำอธิบาย |
---|---|
ไม่มี | ค่านี้เป็นค่าเริ่มต้นที่ไม่ระบุกฎ |
ซ่อนอยู่ | สิ่งนี้เหมือนกับ "ไม่มี" แต่จะยังคงใช้พื้นที่กฎ โดยทั่วไปจะโปร่งใส แต่ก็ยังอยู่ที่นั่น |
จุด | สิ่งนี้กำหนดกฎจุด |
ประชด | สิ่งนี้กำหนดกฎเส้นประ |
แข็ง | สิ่งนี้กำหนดกฎที่มั่นคง |
ดับเบิ้ล | สิ่งนี้กำหนดกฎคู่ |
ร่อง | สิ่งนี้กำหนดกฎของร่อง 3 มิติ และตรงข้ามกับสันเขา |
สันเขา | สิ่งนี้กำหนดกฎ 3D ridged และตรงข้ามกับ Groove |
แทรก | สิ่งนี้กำหนดเส้นขอบของกฎ 3 มิติ และเอฟเฟกต์ดูเหมือนถูกฝังไว้ มันสร้างผลตรงกันข้ามของการเริ่มต้น |
ให้เราดูตัวอย่างสำหรับคุณสมบัติ columnRuleStyle -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> #DIV1{ padding: 5px; column-count: 5; column-rule-width: 9px; column-rule-color: lightblue; column-rule-style: solid; } </style> <script> function changeColumnRuleStyle(){ document.getElementById("DIV1").style.columnRuleStyle="dashed"; document.getElementById("Sample").innerHTML="The column rule style is now changed."; } </script> </head> <body> <div id="DIV1"> <img src="https://www.tutorialspoint.com/images/Swift.png"><br/> <img src="https://www.tutorialspoint.com/images/xamarian.png"><br/> <img src="https://www.tutorialspoint.com/images/pl-sql.png"><br/> <img src="https://www.tutorialspoint.com/images/asp-net.png"><br/> <img src="https://www.tutorialspoint.com/images/powerbi.png"><br/> <img src="https://www.tutorialspoint.com/images/Tableau.png"><br/> <img src="https://www.tutorialspoint.com/images/Big-Data-Analytics.png"><br/> <img src="https://www.tutorialspoint.com/images/microsoftproject.png"> <img src="https://www.tutorialspoint.com/images/QlikView.png"><br/> <img src="https://www.tutorialspoint.com/images/hadoop.png"> </div> <p>Change the above div column style by clicking the below button</p> <button onclick="changeColumnRuleStyle()">Change Column Rule Style</button> <p id="Sample"></p> </body> </html>
ผลลัพธ์
เมื่อคลิก “เปลี่ยนรูปแบบกฎของคอลัมน์” ปุ่ม −