Report abuse

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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
	<title>«Воображариум доктора Парнаса»</title>
	<style type='text/css'>
		body, 
		html {
			padding: 0;
			margin: 0;
		}
		
		body {
			min-width: 900px;
		}
		
		.clearfix {
			zoom: 1;
		}
		.clearfix:after {
			content: "";
			display: block;
			height: 0;
			clear: left;
		}
		
		.content {
			overflow: hidden;
			zoom: 1;
		}
		
		.left,
		.right,
		.green,
		.center {
			height: 500px;
		}		
		
		.center {
			position: relative;
			left: 150px;
			width: 100%;
			float: left;
		}
		.green {
			margin-right: 300px;
			background: green;
		}
		.left {
			left: -100%;
			width: 150px;
			margin-left: -100%;
			margin-right: -150px;
			float: left;
			background: blue;
		}
		.right {
			width: 150px;
			margin-left: -150px;
			float: left;
			background: navy;
		}
	</style>
</head>
<body>
	<div class='content'>
		<div class='center'>
			<div class='green'>
			</div>
		</div>
		<div class='left'>
		</div>
		<div class='right'>
		</div>
	</div>
</body>
</html>