blob: c9c30c2a3d56a266cda10367f8541f483b34e453 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
div {
height: 1.5in;
width: 100px;
}
.orange {
background: orange;
}
.blue {
background: blue;
width: 50px;
float: right;
}
</style>
<body>
<p>Test passes if the orange and blue boxes below are the same height.</p>
<div class="orange"><div class="blue"></div></div>
</body>
|