From bc0a84426d3780bc8fd7245e98bc718a2f0cce27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C9=99tan=C9=99t?= Date: Wed, 14 Jan 2026 13:27:02 +0400 Subject: [PATCH] fix(curriculum): remove incorrect article in RWD curriculum (#65129) --- .../671a88d636cebc5fbd407b78.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md b/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md index 84ef742c87d..63109b0c7ea 100644 --- a/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md +++ b/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md @@ -25,7 +25,7 @@ dashedName: review-css-backgrounds-and-borders - **`pseudo-class`**: This is a keyword added to a selector that allows you to select elements based on a particular state. Common states would include the `:hover`, `:visited` and `:focus` states. - **`:link pseudo-class`**: This pseudo-class is used to style links that have not be visited by the user. - **`:visited pseudo-class`**: This pseudo-class is used to style links where a user has already visited. -- **`:hover pseudo-class`**: This pseudo-class is used to style an elements where a user is actively hovering over them. +- **`:hover pseudo-class`**: This pseudo-class is used to style elements where a user is actively hovering over them. - **`:focus pseudo-class`**: This pseudo-class is used to style an element when it receives focus. Examples would include `input` or `select` elements where the clicks or tabs on the element to focus it. - **`:active pseudo-class`**: This pseudo-class is used to style an element that was activated by the user. A common example would be when the user clicks on a button.