| <!DOCTYPE html> |
| <!-- |
| | The value "break-word" of property "word-wrap" allows an unbreakable word |
| | to be broken at an arbitrary point if there are no otherwise acceptable break |
| | points in the line. |
| | NOTE: "word-wrap" is an alias for "overflow-wrap" |
| | https://www.w3.org/TR/css3-text/#overflow-wrap-property |
| --> |
| <html> |
| <head> |
| <style> |
| body { |
| margin: 0px; |
| font-family: Roboto; |
| font-size: 20px; |
| } |
| span { |
| word-wrap: break-word; |
| } |
| .containing-block { |
| background-color: #03a9f4; |
| width: 200px; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="containing-block"> |
| <span>abcdefghijklmnopqrstuvwxyz</span> |
| </div> |
| </body> |
| </html> |