Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSophie Labrey
7,894 PointsWhy is my box model showing different dimensions when viewed on Dev Tools?
Maybe i'm missing something here about browser resizing, but my code seems to match everything and my box renders correctly in the browser, however whenever I inspect the page via Chrome Dev Tools, my box model shows different dimensions to the ones that are displayed in box.png.
Sophie Labrey
7,894 Points.box {
width: 90%;
height: 300px;
max-width: 600px;
padding: 20px;
border: 2px solid orange;
margin: auto;
overflow-y: scroll;
box-sizing: border-box;
}
Rich Donnellan
Treehouse Moderator 27,696 PointsSophie Labrey — updated your code snippet. Check out the Markdown Cheatsheet below the Add an Answer submission for syntax examples, or go to edit your comment and you should see how I formatted it.
1 Answer
Rich Donnellan
Treehouse Moderator 27,696 PointsWhich values aren't matching for you? The (auto-)margin
values will differ based on the width of your viewport. I tested the code and all the other values matched.
Adriana Karlak
1,450 PointsI'm having the same problem this person was having. I've viewed the answers to it but I don't quite understand why it's doing this. Is something wrong? Or is it showing different dimensions because we all have different viewports? In which case the fact that it's not showing the same dimensions would not be an issue.
Jamie Reardon
Treehouse Project ReviewerJamie Reardon
Treehouse Project ReviewerIt would help to see your code so we can assist you further.