From 6f54186752a832c55448b13ba4129063b9335514 Mon Sep 17 00:00:00 2001 From: Web Dev Simplified Date: Tue, 30 Jul 2024 07:26:14 -0500 Subject: [PATCH] Fix Typo --- src/pages/2024-07/css-focus-crash-course/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/2024-07/css-focus-crash-course/index.mdx b/src/pages/2024-07/css-focus-crash-course/index.mdx index 2828c83..8cedf21 100644 --- a/src/pages/2024-07/css-focus-crash-course/index.mdx +++ b/src/pages/2024-07/css-focus-crash-course/index.mdx @@ -116,7 +116,7 @@ It is important to know that the child elements do not need to have a focus styl ## The Secret Fourth Focus Method -The final focus method is a bit different since there is no built in CSS pseudo class for `:focus-visible-within`. Instead we have to write our own custom CSS selector that does the same thing. This custom selector combines hwo `:focus-within` and `:focus-visible` work to create a focus method that only shows focus styles when a child of the element would have its `:focus-visible` styles shown. +The final focus method is a bit different since there is no built in CSS pseudo class for `:focus-visible-within`. Instead we have to write our own custom CSS selector that does the same thing. This custom selector combines how `:focus-within` and `:focus-visible` work to create a focus method that only shows focus styles when a child of the element would have its `:focus-visible` styles shown. ```css {5} .container {