-
Notifications
You must be signed in to change notification settings - Fork 0
/
name.html
40 lines (37 loc) · 916 Bytes
/
name.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>点击图片显示大图</title>
<style type="text/css">
.parent {
display: inline-block;
width: 100%;
height: 1080px;
font-size: 0;
background: #80848f;
text-align: center;
}
.parent:before {
display: inline-block;
height: 100%;
content: '';
background: #ff9900;
vertical-align: middle;
}
.child {
display: inline-block;
width: 50px;
height: 50px;
background: #19be6b;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="parent">
<!-- <div class="child">child</div>-->
<img src="blogyg-logo.png" class="child">
</div>
</body>
</html>