blob: bbccf2b24f7d09cfdb4e89724179348e987812f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url(../fonts/ShipporiMincho-Regular.subset.otf);
}
.ref {
font: 40px test;
writing-mode: vertical-rl;
float: left;
text-orientation: upright;
}
</style>
<p>The three wavy dash glyphs below should all look the same:
<div class=ref>〜</div>
<div class=ref>〜</div>
<div class=ref>〜</div>
|