-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path块文字水平.html
56 lines (55 loc) · 1.22 KB
/
块文字水平.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#container{
margin:50px auto;
width: 300px;
}
#box{
float:left;
font-size:20px
}
#container ul{
float: left;
margin: 0;
height: 26px;
line-height: 35px;
vertical-align: bottom;
}
#container ul li{
font-size: 12px;
display: inline-block;
margin: 0;
height: 26px;
margin-right: 20px;
list-style: none;
}
#container ul :nth-child(1){
color: #ff9d50;
vertical-align: top;
}
#container:after{
content: '```';
display: block;
clear: both;
visibility: hidden;
height: 0;
}
</style>
</head>
<body>
<div id="container">
<div id="box">
asdasd
</div>
<ul>
<li style="vertical-align: super;">11111</li>
<li style="vertical-align: bottom">22222</li>
<li>33333</li>
</ul>
</div>
</body>
</html>