blob: f2f666e9bfb6fc70b0182394989211b218691f0c (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
height: 20px;
background-color: green;
}
#spacer1 {
height: 60px;
}
#min-height {
height: 20px;
background-color: blue;
}
#spacer2 {
height: 40px;
}
</style>
</head>
<body>
<div class="separator"></div>
<div id="spacer1"></div>
<div id="min-height">
<div id="zero-height"></div>
</div>
<div id="spacer2"></div>
<div class="separator"></div>
</body>
</html>
|