forked from vearch/python-algorithm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage.list.css
More file actions
55 lines (53 loc) · 1.15 KB
/
Copy pathimage.list.css
File metadata and controls
55 lines (53 loc) · 1.15 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
<style>
.clearfix:after,.clearfix:before {
content: "";
display: table
}
.clearfix:after {
clear: both
}
ul,ul li{
list-style: none;
padding: 0px;
margin: 0px;
}
.imgList{
width: 1200px;
margin: 0 auto;
background-color: #efefef;
}
.imgList li{
float: left;
width: 232px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-right: 10px;
margin-bottom: 10px;
background-color: #ffff;
}
.imgList li .imgWrapper{
height:232px;
width:232px;
display:flex;
justify-content:center;
align-items:center;
}
.imgList li:nth-of-type(5n){
margin-right: 0;
}
.imgList li img{
max-width: 232px;
max-height: 232px;
}
.imgList li p{
width: 100%;
height: 30px;
text-overflow:ellipsis;
text-indent: 10px;
line-height: 30px;
overflow: hidden;
white-space: nowrap;
}
</style>