Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 word-wrap Property</title> <style> p { width: 200px; padding: 10px; background: #90ee90; word-wrap: break-word; } </style> </head> <body> <p>This paragraph contains a veryveryveryveryveryveryveryverylongword. The long word will automatically break and wrap to the next line.</p> </body> </html>