caption-side-applies-to-003-ref.html (540B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 div { 6 margin-left: 2em; 7 } 8 .orange { 9 background: orange; 10 display: list-item; 11 } 12 </style> 13 <body> 14 <p>Test passes if there are three lines of "Filler Text" below and if the middle "Filler Text" has a orange background and a marker bullet on its left-hand side. The marker bullet should not have an orange background.</p> 15 <div>Filler Text</div> 16 <div class="orange">Filler Text</div> 17 <div>Filler Text</div> 18 </body>