From f4a2d8d03bbaf76f05c023c012ce5ef433bafe05 Mon Sep 17 00:00:00 2001 From: agilan11 <140779703+agilan11@users.noreply.github.com> Date: Wed, 16 Apr 2025 21:57:57 +0530 Subject: [PATCH] fix(curriculum) : Improve Question 19 Clarity by Standardizing Answer lengths (#59760) --- .../66ed9009f45ce3ece4053eb7.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/quiz-css-relative-and-absolute-units/66ed9009f45ce3ece4053eb7.md b/curriculum/challenges/english/25-front-end-development/quiz-css-relative-and-absolute-units/66ed9009f45ce3ece4053eb7.md index 126b43dc1d5..f76acb465bc 100644 --- a/curriculum/challenges/english/25-front-end-development/quiz-css-relative-and-absolute-units/66ed9009f45ce3ece4053eb7.md +++ b/curriculum/challenges/english/25-front-end-development/quiz-css-relative-and-absolute-units/66ed9009f45ce3ece4053eb7.md @@ -417,15 +417,15 @@ What does setting an element's width to `auto` do in CSS? #### --distractors-- -It sets the width to `100%`. +It sets the width to `100%` of the parent element by default. --- -It sets the width to `50%` of the viewport. +It sets the width to `50%` of the viewport unless other styles override it. --- -It sets the width to `0px`. +It sets the width to `0px` if no content or padding is present. #### --answer--