<!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>