OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 /* Matches monochrome displays. */ | |
4 @media not all and (monochrome: 0) { #test::before { content: "PASS"; } } | |
5 /* Matches non-monochrome displays. */ | |
6 @media (monochrome: 0) { #test::after { content: "PASS"; } } | |
7 </style> | |
8 <p>You should see the word PASS below.</p> | |
9 <p id="test"></p> | |
OLD | NEW |