blob: 21acddf51675b3e76580e560d50e18191a376314 [file] [log] [blame]
<!DOCTYPE html>
<!--
| The value "pre-wrap" 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: 350px;
white-space: pre-wrap;
}
</style>
</head>
<body>
<div><br>abc def <span>ghi jkl mno</span> pqr stu<br> vwx yz</div>
</body>
</html>