blob: 39ac355941de7bb4e52a4f2894a26fec40e15374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<style>
div {
font-family:monospace;
width:200px;
border:1px solid red;
text-align-last:justify;
}
span {
display:inline-block;
}
</style>
<!-- The <space> or <nbsp> characters that carry combining marks
should NOT be stretched by justification. -->
<div>
<p><span>Hello ̈ ̈ ̈</span> world
<p><span>Hello ̈ ̈ ̈</span> world
<p><span>Hello ̈</span> <span> ́ ̀world</span>
<p><span>Hello ‭̈‬</span> <span> ‭̂‬world</span>
|