blob: 4452df03d4fdd8a31a04e8c6f56a211d8a32a837 [file] [log] [blame]
<!DOCTYPE html>
<!--
| The value "break-word" of property "overflow-wrap" allows an unbreakable word
| to be broken at an arbitrary point if there are no otherwise acceptable break
| points in the line.
| https://www.w3.org/TR/css3-text/#overflow-wrap-property
-->
<html>
<head>
<style>
body {
margin: 0px;
font-family: Roboto;
font-size: 20px;
}
span {
overflow-wrap: break-word;
}
.containing-block {
background-color: #03a9f4;
width: 200px;
}
</style>
</head>
<body>
<div class="containing-block">
<span>abcdefghijklmnopqrstuvwxyz</span>
</div>
</body>
</html>