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 trialEdward 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,160 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
231,210 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.