From e20a169b9be58a6116f78a1d5c5d76a531c19b1d Mon Sep 17 00:00:00 2001 From: agilan11 <140779703+agilan11@users.noreply.github.com> Date: Mon, 17 Feb 2025 22:11:31 +0530 Subject: [PATCH] fix(curriculum): Fixed question to replace misleading 'standard' and `alternative' terms with accurate content-box and border-box distinctions. (#58653) Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com> --- .../top-the-box-model/the-box-model-lesson-i.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-i.md b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-i.md index c80867196e4..5d8d8fcf6aa 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-i.md +++ b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-i.md @@ -13,23 +13,23 @@ Because the box model concept is so incredibly fundamental, let’s dig a bit de ## --text-- -What is the difference between the standard and alternative box model? +Which of the following correctly describes the difference between the `content-box` and `border-box` box models in CSS? ## --answers-- -The standard box model calculates the width and height of an element based on the content alone, while the alternative box model calculates based on the content plus padding and border. +The `content-box` model includes content, padding, and border within the specified width and height, while the `border-box` model includes only the content. --- -The standard box model includes content, padding, and border, while the alternative box model includes only the content. +In the `content-box` model, the specified width and height apply only to the content, excluding padding and border, whereas in the `border-box` model, they include padding and border. --- -The standard box model and the alternative box model are the same and have no differences. +The `content-box` model and the `border-box` model are the same and have no differences. --- -The standard box model includes only the content, while the alternative box model includes content, padding, and border. +In the `border-box` model, the width and height apply only to the content, while in the `content-box` model, they include padding and border. ## --video-solution--