स्तंभ नियम कॉलम नियम सेट करने के लिए जावास्क्रिप्ट में संपत्ति का उपयोग किया जाता है। यह आपको कॉलम नियम के बीच शैली, रंग और चौड़ाई निर्धारित करने की अनुमति देता है।
उदाहरण
आप जावास्क्रिप्ट के साथ कॉलम नियम गुण सेट करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <p>Click below to create 4 columns</p> <button onclick="display()">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.columnCount = "4"; document.getElementById("myID").style.columnRule = "2px outset red"; } </script> </body> </html>