Prev Demo
CSS3
>
Word-Wrap Property
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> p { word-wrap: normal; width: 12em; border: solid; } div { word-wrap: break-word; width: 12em; border: solid; } </style> <strong>Word-wrap property with value normal</strong> <p> This is SN ITFunda Service Private Ltd...!!, OooooooooHhhhhhhhhhMyyyyyyy God. Yes it is. </p> <strong>Word-wrap property with value 12em</strong> <div> This is SN ITFunda Service Private Ltd...!!, OooooooooHhhhhhhhhhMyyyyyyy God. Yes it is. </div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output