blob: e871e3be62a2d99116d51f820156270b0505df4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
body {
background: #ffff00;
}
div {
color: green;
}
</style>
<body>
<div>#ffff00</div>
<p>Test passes if there is the text "#ffff00" above.</p>
</body>
|