15 lines
307 B
HTML
15 lines
307 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
.box {
|
|
background: blue;
|
|
height: 1in;
|
|
width: 2in;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if the "Filler Text" below is above the box.</p>
|
|
<div>Filler Text</div>
|
|
<div class="box"></div>
|
|
</body>
|