लाइन को तोड़ने और अगली लाइन पर रैप करने के लिए वर्ड-रैप प्रॉपर्टी का इस्तेमाल करें। CSS में वर्ड-रैप प्रॉपर्टी को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { width: 200px; border: 2px solid #000000; } div.b { word-wrap: break-word; } </style> </head> <body> <h2>word-wrap: break-word property</h2> <div class = "b"> ThisisdemotextThisisdemotext: thisisaveryveryveryveryveryverylongword. The long word wraps to the next line.</div> </body> </html>
आउटपुट