-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathruby-annotation-with-margin.html
More file actions
38 lines (33 loc) · 1.17 KB
/
ruby-annotation-with-margin.html
File metadata and controls
38 lines (33 loc) · 1.17 KB
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
<!DOCTYPE html>
<title>Interlinear ruby annotation box with margin</title>
<link rel="match" href="ruby-annotation-with-margin-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-ruby-1/#interlinear-layout">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
body {
font-family: Ahem;
font-size: 10px;
}
ruby {
color: transparent;
}
rt {
color: green;
}
.under ruby {
ruby-position: under;
}
</style>
<div><ruby>base<rt style="margin: 10px;">annotation</rt></ruby></div>
<div><ruby>base<rt style="margin-top: 10px;">annotation</rt></ruby></div>
<div><ruby>base<rt style="margin-bottom: 10px;">annotation</rt></ruby></div>
<div class=under>
<div><ruby>base<rt style="margin: 10px;">annotation</rt></ruby></div>
<div><ruby>base<rt style="margin-top: 10px;">annotation</rt></ruby></div>
<div><ruby>base<rt style="margin-bottom: 10px;">annotation</rt></ruby></div>
</div>
<div style="writing-mode: vertical-lr">
<div><ruby>base<rt style="margin: 10px;">annotation</rt></ruby></div>
<div><ruby>base<rt style="margin-top: 10px;">annotation</rt></ruby></div>
<div><ruby>base<rt style="margin-bottom: 10px;">annotation</rt></ruby></div>
</div>