blob: 032c4e545ad135d51493d166f0551a00b565f9f3 [file] [log] [blame]
<!DOCTYPE html>
<!--
| The value "nowrap" 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>
<meta charset="utf-8">
<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>الحلقة النهائية من #MBCTheVoiceKids بتقنية الـ 360</span>
</div>
</body>
</html>