-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path18.html
51 lines (49 loc) · 1.08 KB
/
18.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
padding:0;
margin:0;
}
ul{
list-style: none;
width:400px;
height:250px;
border:1px solid black;
margin:100px auto;
}
ul li{
float:left;
height:50px;
width:100px;
margin-top:50px;
}
ul li span{
display:inline-block;
height:24px;
width:24px;
background-color: red;
margin-left:38px;
}
p{
text-align: center;
line-height: 21px ;
}
</style>
</head>
<body>
<ul>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
<li><span></span><p>百度</p></li>
</ul>
</body>
</html>