blob: 098acfaf3de94edc6f62215031de21f4cdc610a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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>
|