blob: e60406befe75d663d81dbbfc164aee4b75ff11bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
.blue {
background: blue;
}
</style>
<body>
<p>Test passes if there are three lines of "Filler Text" below and the middle line has a blue background.</p>
<div>Filler Text</div>
<div class="blue">Filler Text</div>
<div>Filler Text</div>
</body>
|