JavaScript का प्रयोग करें columnWidth कॉलम की चौड़ाई निर्धारित करने के लिए गुण।
उदाहरण
जावास्क्रिप्ट के साथ कॉलम की चौड़ाई निर्धारित करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं:
<!DOCTYPE html> <html> <body> <p>Set the width of the columns</p> <button onclick="display()">Change Width</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. </div> <script> function display() { document.getElementById("myID").style.columnWidth = "70px"; } </script> </body> </html>