-
Notifications
You must be signed in to change notification settings - Fork 0
/
txtxtx.html
52 lines (50 loc) · 1.31 KB
/
txtxtx.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><!--pc站独有-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0,user-scalable=0"><!--手机站独有-->
<title>sch</title>
<meta name="description" content="breaking open a way through brambles and thorns">
<meta name="keywords" content="make great efforts">
<meta name="renderer" content="webkit">
<meta name="apple-mobile-web-app-capable" content="yes"><!--删除苹果默认工具栏-->
<meta name="apple-mobile-web-app-status-bar-style" content="black"><!--设置顶部导航栏颜色-->
<!--<link type="text/css" href="../css/font/iconfont.css" rel="stylesheet">-->
</head>
<STYLE>
div{
border: 1px solid black;
}
#dage{
width: 1000px;
height: 500px;
position: fixed;
top: 100px;
}
#one{
position: absolute;
width: 200px;
height: 100px;
top: 10px;
left: 10px;
z-index: 2;
background: white;
}
#two{
position: absolute;
width: 200px;
height: 100px;
top: 20px;
left: 20px;
z-index: 1;
}
</STYLE>
<body>
<div id="dage">
<div id="one"></div>
<div id="two"></div>
</div>
</body>
</html>