columnRuleWidth का प्रयोग करें कॉलम के बीच की चौड़ाई निर्धारित करने के लिए गुण। आप जावास्क्रिप्ट के साथ कॉलम के बीच नियम की चौड़ाई निर्धारित करने के लिए निम्नलिखित कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <style> #myID { column-count: 4; column-rule: 4px solid yellow; } </style> </head> <body> <p>Click below to change width</p> <button onclick="display()">Change Width between Columns</button> <div id="myID"> This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </div> <script> function display() { document.getElementById("myID").style.columnRuleWidth = "8px"; } </script> </body> </html>