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 trialEric Larson
3,943 PointsBuilding your own css framework
Everyone,
What do you guys think about writing your own css framework instead of using ones like: Skeleton, Bootstraps, 960Grid, etc.
Is there a very basic grid system out there that doesn't style buttons, forms, etc, but just resets the browser and gives you grids.
3 Answers
James Barnett
39,199 PointsYou can use:
- Normalize.css
- HTML5 Boilerplate
- Golden Grid System
Jack Carr
7,329 PointsNormalize will reset http://necolas.github.io/normalize.css/
I guess you can then choose your preferred grid system and combine them
Eric Larson
3,943 PointsThanks guys, I figured to use the normalize.css. I'll check out the Golden Grid System though, James.
James Barnett
39,199 PointsThe 3 assets I listed each do different things, you don't need to use a grid system you can work out the math to make your own grids as is the done in the Build a Responsive Web Site course.
Eric Larson
3,943 PointsJames, thank you for your help.