From 8ad25f7e0fcda3ebe44231f7d80c0d7488cf34d7 Mon Sep 17 00:00:00 2001 From: Vishnu D <149229313+vishnudt2004@users.noreply.github.com> Date: Sat, 31 May 2025 02:37:06 +0530 Subject: [PATCH] fix(curriculum): clarify wording in css flexbox quiz questions (#60623) --- .../66ed8fe7f45ce3ece4053eb2.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/quiz-css-flexbox/66ed8fe7f45ce3ece4053eb2.md b/curriculum/challenges/english/25-front-end-development/quiz-css-flexbox/66ed8fe7f45ce3ece4053eb2.md index affa3266715..1c5344558bd 100644 --- a/curriculum/challenges/english/25-front-end-development/quiz-css-flexbox/66ed8fe7f45ce3ece4053eb2.md +++ b/curriculum/challenges/english/25-front-end-development/quiz-css-flexbox/66ed8fe7f45ce3ece4053eb2.md @@ -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--