1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reference</title> <style> div { background: blue; width: 2in; } .box { height: 1in; } </style> <body> <p>Test passes if the "Filler Text" below is inside the box.</p> <div>Filler Text</div> <div class="box"></div> </body>