blob: 23bb3e9933458edd19f0378e4acbb39f6f5d04f9 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<!DOCTYPE html>
<style>
div.test {
font-family: Arial;
line-height: 1;
width: 10ch;
border: 1px solid blue;
}
</style>
<body>
<div class="test" dir="rtl">
אאאאאאאא
MMMMM
</div>
<div class="test">
MMMMM
אאאאאאאא
</div>
<div class="test">
<div>a</div>
<div dir="rtl">
אאאאאאאא
MMMMM
</div>
</div>
<div class="test">
<div>a</div>
<div>
MMMMM
אאאאאאאא
</div>
</div>
<div class="test">
<div dir="rtl">א</div>
<div dir="rtl">
אאאאאאאא
MMMMM
</div>
</div>
<div class="test">
<div dir="rtl">א</div>
<div>
MMMMM
אאאאאאאא
</div>
</div>
</body>
|