-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (65 loc) · 2.05 KB
/
Copy pathindex.html
File metadata and controls
71 lines (65 loc) · 2.05 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
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="./wRC_min.css" />
</head>
<body>
<div class="wR_HC">
<div class="wC_HCB" style="width: 1000px;">
<!-- wR -->
<div class="wC_HS explainBox" style="margin-top: 0px;">
<span>wR_HC 横向-水平居中</span>
<div class="wR_HC box">
<span>内容</span>
</div>
</div>
<div class="wC_HS explainBox">
<span>wR_HS 横向-左对齐</span>
<div class="wR_HS box">
<span>内容</span>
</div>
</div>
<div class="wC_HS explainBox">
<span>wR_HE 横向-右对齐</span>
<div class="wR_HE box">
<span>内容</span>
</div>
</div>
<div class="wC_HS explainBox">
<span>wR_HE 横向-右对齐</span>
<div class="wR_HE box">
<span>内容</span>
</div>
</div>
<!-- wC -->
<div class="wC_HS explainBox">
<span>wC_HC 纵向-水平居中</span>
<div class="wC_HCVE box">
<span>第一行</span>
<span>第二行</span>
<span>第三行</span>
</div>
</div>
<div class="wC_HS explainBox">
<span>wC_HCVC 纵向-水平居中+垂直居中</span>
<div class="wC_HCVC box" style="height: 180px;">
<span>第一行</span>
<span>第二行</span>
<span>第三行</span>
</div>
</div>
</div>
</div>
</body>
</html>
<style>
.explainBox {
margin-top: 20px;
}
.box {
margin-top: 4px;
border: 1px solid #666666;
}
</style>