image-light-dark.html (574B)
1 <!doctype html> 2 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/10577"> 3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1966890"> 4 <link rel="match" href="image-light-dark-ref.html"> 5 <style> 6 div:empty { 7 width: 100px; 8 height: 100px; 9 background-image: light-dark( 10 url("/images/green.png"), 11 url("/images/red.png") 12 ); 13 } 14 </style> 15 <div style="color-scheme: dark"></div> 16 <div style="color-scheme: light"></div> 17 <div style="color-scheme: dark"><div></div></div> 18 <div style="color-scheme: light"><div></div></div>