blob: acb08a2987f049a95906cdec0f2a772b48ed1846 [file] [log] [blame]
<!DOCTYPE html>
<!--
| The value "pre" of property "white-space" does not allow wrapping. Content
| that does not fit the block container overflows it.
| https://www.w3.org/TR/css3-text/#white-space-property
-->
<html>
<head>
<style>
body {
margin: 0px;
font-family: Roboto;
font-size: 20px;
}
span {
white-space: pre;
}
.containing-block {
background-color: #03a9f4;
width: 200px;
}
</style>
</head>
<body>
<div class="containing-block">
<span>abc def ghi jkl mno pqr stu vwx yz</span>
</div>
</body>
</html>