Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Edward Sena
16,356 Pointscode in general
Using minimum code on a web page, html css is this a good or bad idea?
3 Answers

Balazs Peak
46,121 PointsIf the functionality doesn't demand much, it is actually better to use less code (e.g. to improve performance). When you are creating projects for education, you are mostly not concerned about a wide variety of features anyway.

Steven Parker
221,294 PointsIt's always a good idea to use the minimum amount of code necessary to produce the results you need.

Edward Sena
16,356 PointsThank you for your response to my question.