-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput0922.html
31 lines (27 loc) · 1.01 KB
/
input0922.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
<!DOCTYPE html>
<html lang="zn-ch">
<head>
<meta name="description" content="">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style>
* { margin:0; padding:0;}
.b { width:50px; height:50px; border:1px solid red;}
.center { display:-webkit-box;-webkit-box-orient: horizontal; -webkit-box-pack: center;-webkit-box-align: center; box-orient: horizontal;box-pack: center; box-align: center;}
.a { position:relative;}
.a1 { position:absolute; top:0; left:0; width:100%; height:100%;}
</style>
</head>
<body>
<div class="a"><img src="images/22.jpg" width="100%"/>
<div class="a1 center">
<div class="b"></div>
</div>
</div>
</body>
</html>