| <!DOCTYPE html> | |
| <!-- | |
| | The value "pre-line" of property "white-space" allows wrapping, and | |
| | line breaks should also occur at <br> elements. | |
| | https://www.w3.org/TR/css3-text/#white-space-property | |
| --> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| font-family: Roboto; | |
| font-size: 20px; | |
| } | |
| div { | |
| background-color: #03a9f4; | |
| width: 400px; | |
| white-space: pre-line; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div><br>abc def <span>ghi jkl mno</span> pqr stu<br> vwx yz</div> | |
| </body> | |
| </html> |