कॉलमस्पैन . सेट करें सभी के लिए संपत्ति, यदि आप चाहते हैं कि कॉलम जावास्क्रिप्ट में फैले हों। जावास्क्रिप्ट के साथ एक तत्व को कितने कॉलम में फैलाना चाहिए, यह वापस करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <style> #myID { column-count: 4; } </style> </head> <body> <p>Note- The columnSpan property won't work in Firefox.</p> <button onclick = "display()">Span Columns</button> <div id = "myID"> <h1 id = "h1ID">Heading Level 1 for Demo</h1> 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("h1ID").style.columnSpan = "all"; } </script> </body> </html>