diff --git a/files/en-us/web/css/css_nesting/using_css_nesting/index.md b/files/en-us/web/css/css_nesting/using_css_nesting/index.md index 6cb0c6996426e2b..a03651bfc4ff69f 100644 --- a/files/en-us/web/css/css_nesting/using_css_nesting/index.md +++ b/files/en-us/web/css/css_nesting/using_css_nesting/index.md @@ -374,7 +374,7 @@ In the following CSS we are creating the styles for `.card`, `.card h2` and then /* equivalent to `.card h2` */ color: slateblue; .featured & { - /* equivalent to `.featured.card h2` */ + /* equivalent to `.featured :is(.card h2)` */ color: tomato; } }