diff --git a/mediaqueries-5/Overview.bs b/mediaqueries-5/Overview.bs index e24f673f2c4f..9432ada90c00 100644 --- a/mediaqueries-5/Overview.bs +++ b/mediaqueries-5/Overview.bs @@ -148,6 +148,59 @@ Detecting the ambient light level: the 'light-level' feature +
+ Name: environment-blending + Value: opaque | additive | subtractive + For: @media + Type: discrete ++ + The 'environment-blending' media feature is used to query the characteristics of the user's display + so the author can adjust the style of the document. + An author might choose to adjust the visuals and/or layout of the page depending on the display + technology to increase the appeal or improve legibility. + + The following values are valid: + +
+ body { background-color: white; }
+ p { color: black; }
+
+ @media(environment-blending: additive) {
+ body { background-color: black; }
+ p { color: white; font-size: 16px; font-weight: 1000; }
+ }
+
+