From e560befe920de36153396acf90d179195455391b Mon Sep 17 00:00:00 2001 From: Upasana Pan <72752008+Upasana-610@users.noreply.github.com> Date: Thu, 11 Dec 2025 17:34:05 +0530 Subject: [PATCH] fix(curriculum): missing backticks (#64506) --- .../671a95990b86b68961340adc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/review-css-attribute-selectors/671a95990b86b68961340adc.md b/curriculum/challenges/english/blocks/review-css-attribute-selectors/671a95990b86b68961340adc.md index fa7dee0c9d3..1453fc5c0bf 100644 --- a/curriculum/challenges/english/blocks/review-css-attribute-selectors/671a95990b86b68961340adc.md +++ b/curriculum/challenges/english/blocks/review-css-attribute-selectors/671a95990b86b68961340adc.md @@ -44,7 +44,7 @@ a[class~="primary"] { } ``` -- **Match values that start with a specific prefix**: Targets links starting with https:// +- **Match values that start with a specific prefix**: Targets links starting with `https://`. ```css a[href^="https://"] { @@ -53,7 +53,7 @@ a[href^="https://"] { } ``` -- **Match values that end with a specific suffix**: Targets links ending with .jpg +- **Match values that end with a specific suffix**: Targets links ending with `.jpg`. ```css a[href$=".jpg"] { @@ -62,7 +62,7 @@ a[href$=".jpg"] { } ``` -- **Match values that contain a substring anywhere**: Targets links that contain https anywhere in the value. +- **Match values that contain a substring anywhere**: Targets links that contain `https` anywhere in the value. ```css a[href*="https"] {