Skip to content

Commit e20a169

Browse files
agilan11jdwilkin4
andauthored
fix(curriculum): Fixed question to replace misleading 'standard' and `alternative' terms with accurate content-box and border-box distinctions. (freeCodeCamp#58653)
Co-authored-by: Jessica Wilkins <[email protected]>
1 parent f347306 commit e20a169

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-i.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@ Because the box model concept is so incredibly fundamental, let’s dig a bit de
1313

1414
## --text--
1515

16-
What is the difference between the standard and alternative box model?
16+
Which of the following correctly describes the difference between the `content-box` and `border-box` box models in CSS?
1717

1818
## --answers--
1919

20-
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.
20+
The `content-box` model includes content, padding, and border within the specified width and height, while the `border-box` model includes only the content.
2121

2222
---
2323

24-
The standard box model includes content, padding, and border, while the alternative box model includes only the content.
24+
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.
2525

2626
---
2727

28-
The standard box model and the alternative box model are the same and have no differences.
28+
The `content-box` model and the `border-box` model are the same and have no differences.
2929

3030
---
3131

32-
The standard box model includes only the content, while the alternative box model includes content, padding, and border.
32+
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.
3333

3434
## --video-solution--
3535

0 commit comments

Comments
 (0)