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 trialUtkarsh Kumar Singh
3,997 PointsWhat exactly will Developer Tools helps us with?
Practically asking, what will developer tools help us with?
2 Answers
Alexander La Bianca
15,959 PointsDev tools help in so many ways. From what styles are applied to your page to what http requests are being made by your site at any point in time.
I use it all the time for debugging purposes. For example I apply some css style to an element in my css file and then launch the page in Chrome to check out what those new styles may look like. But for whatever reason the styles are not being applied. That is when the Dev tools come into play. They will help a lot in figuring why perhaps the style I applied is not being used on my element. You may see in the dev tools that the style is actually being overwritten by another style further down in the style sheet or something like that.
Tray Denney
Courses Plus Student 12,884 PointsDeveloper tools are primarily used for debugging and optimizing your projects. Here is an awesome Treehouse course that covers most of the Developer tools and their uses:
Utkarsh Kumar Singh
3,997 PointsThank you, I will surely look into it.
Utkarsh Kumar Singh
3,997 PointsUtkarsh Kumar Singh
3,997 PointsThank you for your answer, your explanation really helped.