highlight-styling-004-ref.html (505B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Pseudo-Elements Reference: the light-dark() function in highlight pseudos</title> 4 <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> 5 <link rel="stylesheet" href="support/highlights.css"> 6 <style> 7 .light { 8 color: green; 9 } 10 11 .dark { 12 color: blue; 13 } 14 </style> 15 <p>Test passes if Light is green and Dark is blue.</p> 16 <main class="highlight_reftest"> 17 <p class="light">Light</p> 18 <p class="dark">Dark</p> 19 </mnain>