-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiv-img-contain.html
82 lines (74 loc) · 1.33 KB
/
div-img-contain.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>div-img-contain.html</title>
<style>
div.a{
width: 160px;
height: 160px;
border:1px solid;
}
div.a > img{
width: 100%;
height: 100%;
}
div.b{
width: 160px;
height: 160px;
border:1px solid;
}
div.b > img{
width: 100%;
height: 100%;
object-fit: contain;
}
div.c{
width: 160px;
height: 160px;
border:1px solid;
line-height: 160px;
text-align: center;
font-size: 0;
}
div.c > img{
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
div.d{
width: 160px;
height: 160px;
border:1px solid;
position: relative;
}
div.d > img{
position: absolute;
max-height: 100%;
max-width: 100%;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
}
</style>
</head>
<body>
<div class="a">
<img src="https://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" alt="苹果应用商店图标">
</div>
<hr>
<div class="b">
<img src="https://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" alt="苹果应用商店图标">
</div>
<hr>
<div class="c">
<img src="https://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" alt="苹果应用商店图标">
</div>
<hr>
<div class="d">
<img src="https://image.zhangxinxu.com/image/study/s/s256/mm1.jpg" alt="苹果应用商店图标">
</div>
</body>
</html>