डिव को तीन कॉलम में विभाजित करने के लिए, कॉलमकाउंट का उपयोग करें संपत्ति। कॉलम काउंट सेट करें और डिव को विभाजित करें।
उदाहरण
आप निम्नलिखित कोड को चलाने का प्रयास कर सकते हैं ताकि एक तत्व को जावास्क्रिप्ट के साथ विभाजित किए जाने वाले कॉलम की संख्या वापस मिल सके -
<!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"; } </script> </body> </html>