fix(curriculum): missing backticks (#64506)

This commit is contained in:
Upasana Pan 2025-12-11 17:34:05 +05:30 committed by GitHub
parent f61fd74927
commit e560befe92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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