blob: f900e37a5a3f25b115df6a76475ce22d4f1b7d96 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
@font-face {
font-family: ahem;
src: url(../fonts/Ahem.ttf);
}
div {
height: 100px;
font: 16px/24px ahem;
}
#test1 {
writing-mode: vertical-lr;
text-orientation: upright;
}
</style>
</head>
<body>
<div id="test1">
<span>ab<br>cd</span>
</div>
</body>
</html>
|