fix(curriculum): adding missing backticks for rem values in css quiz (#59503)

This commit is contained in:
Taras Gordiienko
2025-04-01 07:46:11 +02:00
committed by GitHub
parent 9997c3819e
commit afcc92dab7
@@ -373,7 +373,7 @@ What's the key difference between `rem` and `em` in CSS?
#### --distractors--
`em` is relative to the root element, while rem is relative to the parent element.
`em` is relative to the root element, while `rem` is relative to the parent element.
---
@@ -385,7 +385,7 @@ What's the key difference between `rem` and `em` in CSS?
#### --answer--
`em` is relative to the font size of the parent element, while rem is relative to the root element.
`em` is relative to the font size of the parent element, while `rem` is relative to the root element.
### --question--