blob: d6c25b59e08f1b681bcd4841dd59fb97292482fd (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
.justify {
width: 400px;
text-align: justify;
background: lightgreen;
}
.force {
width: 400px;
display: inline-block;
height: 3px;
background: yellow;
}
</style>
</head>
<body onload="document.getElementById('s').textContent='\u202E\0 \u1DCEz'; /* cannot express \0 in html markup using amp escape */">
<div class="justify"><span class="force"></span><span id="s"></span><span class="force"></span></div>
</body>
</html>
|