PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> div { width: 250px; border: 3px solid #000000; } div.a { word-wrap: normal; } div.b { word-wrap: break-word; } </style> </head> <body> <h1>word-wrap property example</h1> <h2>word-wrap: normal (default):</h2> <div class="a"> This div contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will not break and wrap to the next line.</div> <h2>word-wrap: break-word:</h2> <div class="b"> This div contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</div> </body> </html>