aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/ref/height_compute_reset.html
blob: 114e7ef97c2b0c61954c06ddcecb6c0bf299767f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<head>
<link rel="stylesheet" href="reset.css" />
<style type="text/css">
.start {background-color : gray; height : 600px}
.half {background-color : red; height : 50%}
.quarter {background-color : rgb(250, 125, 0); height : 25%}
.eighth {background-color : yellow; height : 12.5%}
.sixteenth {background-color : green; height : 6.25%}
.thirtysecond {background-color : blue; height : 3.125%}
.sixtyfourth {background-color : purple; height : 1.5625%}
</style>
</head>
<body>
  <div class="start">
	<div class="half"></div>
	<div class="quarter"></div>
	<div class="eighth"></div>
	<div class="sixteenth"></div>
	<div class="thirtysecond"></div>
	<div class="sixtyfourth"></div>
  </div>
</body>