blob: 1d4d0e9478bfe5bb5925b8947446ab5f8843b04c [file] [log] [blame]
<!DOCTYPE html>
<!--
| The value "nowrap" of property "white-space" collapses whitespace like
| "normal".
| 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: nowrap;
}
.containing-block {
background-color: #03a9f4;
width: 200px;
}
</style>
</head>
<body>
<div class="containing-block">
<span>abc defg
hij klm nop
qrs tuvw xyz</span>
</div>
</body>
</html>