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--