<!DOCTYPE html> | |
<!-- | |
| The value "pre-wrap" of property "white-space" allows wrapping. Content | |
| that does not fit the block container wraps to the next line. | |
| 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: 200px; | |
white-space: pre-wrap; | |
} | |
</style> | |
</head> | |
<body> | |
<div>abc def <span>ghi jkl mno</span> pqr stu vwx yz</div> | |
</body> | |
</html> |