#
vincent
2020-05-26 1ebc7c64d216450b61be46486fffd1950cc80e60
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <meta name="renderer" content="webkit">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <link rel="stylesheet" type="text/css" href="../static/css/normalize.css">
    <link rel="stylesheet" type="text/css" href="../static/css/common.css">
    <style>
        html {
            height: 100%;
        }
        body {
            height: 100%;
            background-color: #007DDB;
        }
        #container {
            position: relative;
        }
        #box {
            position: absolute;
            top: 15px;
            left: 30px;
        }
    </style>
</head>
<body>
<div id="container">
    <div id="box">box</div>
</div>
</body>
</html>