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