-
Notifications
You must be signed in to change notification settings - Fork 708
/
Copy pathexclusion-writing-modes.html
72 lines (72 loc) · 2.07 KB
/
exclusion-writing-modes.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style>
.ltr {
position: absolute;
top: 240px;
left: 10px;
width: 190px;
height: 145px;
overflow: hidden;
}
.ltr > .fake {
float: right;
height: 60px;
width: 90px;
}
.rtl {
position: absolute;
top: 240px;
left: 220px;
width: 190px;
height: 145px;
direction: rtl;
overflow: hidden;
}
.rtl > .fake {
float: left;
height: 60px;
width: 90px;
}
.ttb {
position: absolute;
top: 100px;
left: 75px;
height: 160px;
width: 235px;
-webkit-writing-mode: vertical-rl;
writing-mode: tb-rl;
overflow: hidden;
}
.ttb > .fake {
float: right;
height: 60px;
width: 200px;
}
.exclusion {
height: 100px;
width: 200px;
border: thin solid red;
-ms-wrap-flow: start;
position: absolute;
top: 200px;
left: 110px;
}
</style>
</head>
<body lang="en">
<div class="ttb"><div class="fake"></div>
<p>すべての人は、自己の権利及び義務並びに自己に対する刑事責任が決定されるに当たって、独立の公平な裁判所による公平な公開の審理を受けることについて完全に平等の権利を有する。 </p>
</div>
<div class="ltr"><div class="fake"></div>
<p>Everyone is entitled in full equality to a fair and public hearing by an independent and impartial tribunal, in the determination of his rights and obligations and of any criminal charge against him. </p>
</div>
<div class="rtl"><div class="fake"></div>
<p>لكل إنسان الحق، على قدم المساواة التامة مع الآخرين، في أن تنظر قضيته أمام محكمة مستقلة نزيهة نظراً عادلاً علنياً للفصل في حقوقه والتزاماته وأية تهمة جنائية توجه إليه.</p>
</div>
<div class="exclusion"></div>
</body>
</html>