blob: e16ef7978ff7c3be6bcd6fbc914d5bc7a3861e4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<html>
<head>
<title>Dead Center</title>
<style>
div.dead_center {
position: absolute;
top: 50%;
left: 50%;
height: 400px;
width: 500px;
margin: -200px 0 0 -250px;
background: #999;
}
</style>
</head>
<body>
<div class="dead_center"></div>
</body>
</html>
|