fix(curriculum): clarify wording in css flexbox quiz questions (#60623)

This commit is contained in:
Vishnu D
2025-05-31 02:37:06 +05:30
committed by GitHub
parent e588ca5e1f
commit 8ad25f7e0f

View File

@@ -408,45 +408,45 @@ Which `justify-content` value spaces items equally along the main axis while lea
#### --text--
Which value for `align-items` will make it so items are directly against the cross-axis start?
Which of the following results in the items being aligned at the start of the cross axis?
#### --distractors--
`flex-end`
`align-items: flex-starts;`
---
`baseline`
`align-items: baseline;`
---
`first-baseline`
`align-items: first-baseline;`
#### --answer--
`flex-start`
`align-items: flex-start;`
### --question--
#### --text--
Which value for `align-items` will make it so items are directly against the cross-axis end?
Which of the following results in the items being aligned at the end of the cross axis?
#### --distractors--
`flex-start`
`align-items: flex-ends;`
---
`baseline`
`align-items: end;`
---
`last-baseline`
`align-items: flex-ending;`
#### --answer--
`flex-end`
`align-items: flex-end;`
### --question--