blob: 8aaca9548b47047b931665ac0eebcf71fffdf01d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
.test {
width: 5em;
border: 1px solid silver;
margin: 1em;
padding: 2px;
}
.wrapped {
word-wrap: break-word;
}
.nowrap {
white-space: nowrap;
}
</style>
</head>
<body>
The emoji faces should wrap within the box; the series of flags should not wrap.
<div class="test">
<span class="wrapped">😀😁😂😃😄😅😆😇<!--
-->😈😉😊😋😌😍😎😏</span><!--
--><span class="nowrap">🇯🇵🇰🇷🇩🇪🇨🇳<!--
-->🇺🇸🇫🇷🇪🇸🇮🇹<!--
-->🇷🇺🇬🇧</span>
</div>
</body>
</html>
|