forked from yanhaijing/vertical-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
writing-mode.html
38 lines (36 loc) · 914 Bytes
/
writing-mode.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>writing-mode</title>
<link rel="stylesheet" href="common.css">
<style>
.wp {
writing-mode: vertical-lr;
text-align: center;
}
.wp-inner {
writing-mode: horizontal-tb;
display: inline-block;
text-align: center;
width: 100%;
}
.box {
display: inline-block;
margin: auto;
text-align: left;
}
</style>
</head>
<body>
<div class="wp">
<div class="wp-inner">
<div class="box">123123</div>
</div>
</div>
<div class="question">
<a href="https://github.com/yanhaijing/vertical-center/issues" target="_blank">交流反馈</a>
</div>
<script src="//yanhaijing.com/assets/plugin/tongji/baidu.js"></script>
</body>
</html>