From aa88ca709a333bbdfd4dd8c8baa3bde9bb7f429c Mon Sep 17 00:00:00 2001 From: Rudra Pratap Singh <144105327+Rudra78996@users.noreply.github.com> Date: Sat, 7 Sep 2024 00:25:41 +0530 Subject: [PATCH] fix(curriculum): add empty line in box model assignment section (#56032) --- .../top-the-box-model/the-box-model-lesson-d.md | 1 + 1 file changed, 1 insertion(+) diff --git a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-d.md b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-d.md index caa7b441aee..589822dcc7d 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-d.md +++ b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-lesson-d.md @@ -13,6 +13,7 @@ In the Elements pane, you can see the entire HTML structure of your page. You ca When an element is selected, the Styles tab will show all the currently applied styles, as well as any styles that are being overwritten (indicated by a strikethrough of the text). For example, if you use the inspector to click on the “Your Career in Web Development Starts Here” header on the The Odin Project homepage, on the right-hand side you’ll see all the styles that are currently affecting the element, as seen below: CSS code snippet in the developer console showing .hero_main-heading with applied margin-bottom: 100px, padding-bottom: 1.875rem, .accent color #ce973e. h1 style rules include font-size, weight, letter-spacing, with its margin-bottom: 2rem overridden. + # --assignment-- Play around with Chrome Dev Tools and see if you can answer the following question.