वर्डव्रैप का प्रयोग करें लंबे शब्दों को तोड़ने और अगली पंक्ति में लपेटने की अनुमति देने के लिए जावास्क्रिप्ट में संपत्ति।
उदाहरण
आप wordWrap के साथ काम करने का तरीका जानने के लिए निम्नलिखित को चलाने का प्रयास कर सकते हैं संपत्ति -
<!DOCTYPE html> <html> <head> <style> #box { width: 150px; height: 150px; background-color: lightblue; border: 1px solid black; } </style> </head> <body> <button onclick = "display()">Set</button> <div id = "box"> ThisisDemoText.ThisisDemoText.ThisisDemoText.ThisisDemoText.Thisis DemoText.ThisisDemoText. </div> <script> function display() { document.getElementById("box").style.wordWrap = "break-word"; } </script> </body> </html>