summaryrefslogtreecommitdiff
path: root/html-layouts/center.html
blob: 72c0bd04743542d66670af2f0b61c1732e84f71b (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>