diff --git a/selectors-4/Overview.bs b/selectors-4/Overview.bs index 1a9f34a46c38..0ef42df63b61 100644 --- a/selectors-4/Overview.bs +++ b/selectors-4/Overview.bs @@ -2326,23 +2326,6 @@ The Focus-Indicated Pseudo-class: '':focus-visible'' so that authors using '':focus-visible'' will not also need to disable the default '':focus'' style. -
- In this example, - authors use a '':not()'' pseudo-class to remove default user agent focus styling - if '':focus-visible'' is supported, - and provide enhanced focus styling via '':focus-visible''. - -
-	:focus:not(:focus-visible) {
-		outline: 0;
-	}
-
-	:focus-visible {
-		outline: 3px solid var(--focus-gold);
-	}
-	
-
-

The Focus Container Pseudo-class: '':focus-within''