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 trial

CSS

Building 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
James Barnett
39,199 Points

You can use:

  • Normalize.css
  • HTML5 Boilerplate
  • Golden Grid System

Normalize will reset http://necolas.github.io/normalize.css/

I guess you can then choose your preferred grid system and combine them

Thanks guys, I figured to use the normalize.css. I'll check out the Golden Grid System though, James.

James Barnett
James Barnett
39,199 Points

The 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.

James, thank you for your help.