fix(curriculum): update question 7 of basic css quiz (#57938)

This commit is contained in:
Lex Garey-Fernandez
2025-01-08 07:57:47 -07:00
committed by GitHub
parent 7446e34f8a
commit ec50fd54de

View File

@@ -149,11 +149,11 @@ Which rule is correct for setting the width and height in CSS?
#### --text--
Which selector is correct to target `h1` elements inside of a `div`?
Which selector correctly targets `h1` elements only when inside a `div`?
#### --distractors--
`div + h1 {}`
`div, h1 {}`
---
@@ -161,7 +161,7 @@ Which selector is correct to target `h1` elements inside of a `div`?
---
`div > h1 {}`
`div + h1 {}`
#### --answer--