-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
53 lines (53 loc) · 1.2 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<style>
*{
padding: 0;
margin: 0;
}
ul{
list-style: none;
}
#container{
width: 500px;
height: 300px;
display: -webkit-box;
}
#container li:nth-child(1){
width: 50px;
-webkit-box-flex: 1;
height: 300px;
overflow: hidden;
}
#container li:nth-child(2){
width: 50px;
-webkit-box-flex: 2;
height: 300px;
overflow: hidden;
}
#container li:nth-child(3){
width: 50px;
-webkit-box-flex: 3;
height: 300px;
overflow: hidden;
}
#container li:nth-child(4){
width: 50px;
-webkit-box-flex: 1;
height: 300px;
overflow: hidden;
}
</style>
</head>
<body>
<ul id="container">
<li><img src="images/1.jpg" alt=""></li>
<li><img src="images/2.jpg" alt=""></li>
<li><img src="images/3.jpg" alt=""></li>
<li><img src="images/4.jpg" alt=""></li>
</ul>
</body>
</html>