blob: 7537624235bb99eb3d361e7f3d691f4394c6f35a [file] [log] [blame]
<!DOCTYPE html>
<!--
| Wrapping is only performed at an allowed break point, called a soft wrap
| opportunity. In most writing systems, in the absence of hyphenation a soft
| wrap opportunity occurs only at word boundaries.
| https://www.w3.org/TR/css3-text/#soft-wrap-opportunity
| https://www.w3.org/TR/css-text-3/#line-break-details
|
| When a soft wrap segment is being checked, leading white space that will
| collapsed should not be included in the width when determining whether the
| segment can fit on the line.
-->
<html>
<head>
<style>
body {
margin: 0px;
font-family: Roboto;
font-size: 20px;
}
div {
overflow-wrap: normal;
}
.containing-block {
background-color: #03a9f4;
width: 202px;
}
.padding-span {
padding: 0px 0px 0px 175px;
}
</style>
</head>
<body>
<div class="containing-block">
<div> a b c d e f g h i j k l m n O</div>
<div><span> </span> a b c d e f g h i j k l m n O</div>
<div><span> </span><span> a b c d e f g h i j k l m n O</span></div>
<div><span><span> </span><span> a b c d e f g h i j k l m n O</span></span></div>
</div>
</body>
</html>