prefers-contrast-001.html (286B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>low, fixed, and high should all evaluate to true in the boolean context.</title> 4 <style> 5 div { 6 width: 100px; 7 height: 100px; 8 } 9 @media(prefers-contrast) { 10 div { 11 outline: 2px solid black; 12 } 13 } 14 </style> 15 <div></div>