From 643e1493c7cf1be22f63cb5d9232bbf59a2fd50b Mon Sep 17 00:00:00 2001 From: Grey Date: Sun, 31 May 2026 08:34:06 -0400 Subject: [PATCH] fix(curriculum): correct CSS description and grammar in review-basic-css (#67728) --- .../671a887a7e62c75e9ab1ee4a.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/curriculum/challenges/english/blocks/review-basic-css/671a887a7e62c75e9ab1ee4a.md b/curriculum/challenges/english/blocks/review-basic-css/671a887a7e62c75e9ab1ee4a.md index a66ee7feaf8..7424be6abcc 100644 --- a/curriculum/challenges/english/blocks/review-basic-css/671a887a7e62c75e9ab1ee4a.md +++ b/curriculum/challenges/english/blocks/review-basic-css/671a887a7e62c75e9ab1ee4a.md @@ -9,7 +9,7 @@ dashedName: review-basic-css ## CSS Basics -- **What is CSS?**: Cascading Style Sheets (CSS) is a markup language used to apply styles to HTML elements. CSS is used for colors, background images, layouts and more. +- **What is CSS?**: Cascading Style Sheets (CSS) is a stylesheet language used to apply styles to HTML elements. CSS is used for colors, background images, layouts, and more. - **Basic Anatomy of a CSS Rule**: A CSS rule is made up of two main parts: a selector and a declaration block. A selector is a pattern used in CSS to identify and target specific HTML elements for styling. A declaration block applies a set of styles for a given selector or selectors. Here is the general syntax of a CSS rule: @@ -38,7 +38,7 @@ Here is an example of inline CSS: ::: -- **Internal CSS**: These styles are written within the `