-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo11.html
88 lines (86 loc) · 2.79 KB
/
demo11.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>demo11</title>
<style>
ul,
li {
margin: 0;
padding: 0;
}
.contianer{
width: 800px;
margin: 0 auto;
}
.contianer h1{
font: 2em/1.4 "宋体","yahei";
text-align: center;
color: #999;
padding-bottom: 10px;
border-bottom: 1px solid #666;
}
.contianer ul::after{
content: "";
clear: both;
display: block;
}
.contianer ul{
list-style: none;
margin-left: -10px;
}
.item{
float: left;
width: 260px;
margin-left: 10px;
margin-top: 30px;
box-shadow: 0 2px 11px 1px rgba(0, 0, 0, 0.514);
}
.item img{
width: 100%;
vertical-align: top;
opacity: 0.75;
}
.name{
background: #fff;
}
.name p{
text-align: center;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div class="contianer">
<h1>风景列表</h1>
<ul>
<li class="item">
<img src="http://7xpvnv.com2.z0.glb.qiniucdn.com/283a4100-10cd-4208-a3b5-4030ec03acf6" alt="风景画" title="风景画" />
<div class="name"><p>风景如画</p></div>
</li>
<li class="item">
<img src="http://7xpvnv.com2.z0.glb.qiniucdn.com/283a4100-10cd-4208-a3b5-4030ec03acf6" alt="风景画" title="风景画" />
<div class="name"><p>风景如画</p></div>
</li>
<li class="item">
<img src="http://7xpvnv.com2.z0.glb.qiniucdn.com/283a4100-10cd-4208-a3b5-4030ec03acf6" alt="风景画" title="风景画" />
<div class="name"><p>风景如画</p></div>
</li>
<li class="item">
<img src="http://7xpvnv.com2.z0.glb.qiniucdn.com/283a4100-10cd-4208-a3b5-4030ec03acf6" alt="风景画" title="风景画" />
<div class="name"><p>风景如画</p></div>
</li>
<li class="item">
<img src="http://7xpvnv.com2.z0.glb.qiniucdn.com/283a4100-10cd-4208-a3b5-4030ec03acf6" alt="风景画" title="风景画" />
<div class="name"><p>风景如画</p></div>
</li>
<li class="item">
<img src="http://7xpvnv.com2.z0.glb.qiniucdn.com/283a4100-10cd-4208-a3b5-4030ec03acf6" alt="风景画" title="风景画" />
<div class="name"><p>风景如画</p></div>
</li>
</ul>
</div>
</body>
</html>