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"] {