palaceGrid.less
959 Bytes
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
@charset "UTF-8";
.palace-grid-box {
.box {
.img-box {
width: 100%;
display: flex;
flex-wrap: wrap;
//justify-content: space-around;
list-style: none;
.item{
display: flex;
align-items: center;
justify-content: center;
padding:0 5px;
box-sizing: border-box;
.img {
display: block;
width: 100%;
height: 340px;
}
}
.two{
width: calc(calc(100% / 2));
margin-top: 10px;
.img {
height: 340px;
}
}
.three{
width: calc(calc(100% / 3));
margin-top: 10px;
.img {
height: 222px;
}
}
}
}
}