diff --git a/files/en-us/web/css/css_conditional_rules/using_feature_queries/index.md b/files/en-us/web/css/css_conditional_rules/using_feature_queries/index.md index 29cc0909046f479..122ea25c7784acb 100644 --- a/files/en-us/web/css/css_conditional_rules/using_feature_queries/index.md +++ b/files/en-us/web/css/css_conditional_rules/using_feature_queries/index.md @@ -118,13 +118,13 @@ For example, the `selector()` function can be used to import a stylesheet for br ### Browser support test -In this example, we check if the browser supports the `AccentColor` {{cssxref("system-color")}}, hiding support with `display: none` if the color type is not supported. +In this example, we check if the browser supports the `AccentColor` {{cssxref("system-color")}} and use `display: none` to change the default "not supported" message to a "supported" message if the color type is supported. #### HTML ```html
- Your browser does not support `accentcolor` as a color value.
+ Your browser does not support AccentColor
as a color value.