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