Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Some background.....I'm reasonably proficient at using CSS for styling, but in practice I struggle with CSS layouts (e.g. creating 3 column layouts, or putting two tables side-by-side).

I understand the theory of floats, relative/absolute/fixed positioning, but in practice I struggle to place elements where they need to be.

share|improve this question
1  
I think the right CSS (the ones that matches your needs best) is definitely the 'right thing' and it will NOT "create as many problems as it solves' especially if you used something as popular and well-maintained as Bootstrap. It will address a great deal of css/layout problems. – Michael Durrant Nov 22 '11 at 12:01
retitle for reopen – Michael Durrant Aug 26 '12 at 1:49
retitle again for reopen – Michael Durrant Sep 20 '12 at 0:00

closed as not constructive by casperOne Apr 10 '12 at 21:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

My Company uses bootstrap from twitter and it's very popular. Details on this and other options:

Minimalist / Foundation:

  • cssgrid, a fluid layout that is good for different browser/screen sizes and window resizing. Thx pcalcao ! +1

  • less is a CSS grid system for designing adaptive websites. It has 4 layouts and 3 sets of typography presets, using a single grid. Often used as a foundation for other frameworks, e.g. lessframework.

  • frameless - a very basic grid layout often used as a foundation for other frameworks. Thx Ed-M ! +1

  • 960 grid (960gs) is a layout format of 960 pixels width.

  • Foundation is an easy to use, powerful, and flexible framework for building prototypes and production code on any kind of device. "Start here, build everywhere." Thx BrutusCat! +1

  • 978.gs is a website promoting modern grid system use in web design. Thanks davehale23! +1

Full service options:

  • Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.
    Over the course of 2012 it saw a fast growing user base and added more features.

  • Compass is widely used - clean markup, extensible, uses SASS. Uses patterns.

  • Bourbon is a comprehensive library of Sass mixins, designed to be as vanilla as possible.

  • Blueprint also covers a lot of stuff - easy-to-use grid, sensible typography, useful plugins, and a stylesheet for printing.

  • less framework uses LESS and extends CSS with dynamic behavior such as variables, mixins, operations and functions. Thanks Steph! +1

Please feel free to add your favorites here. I will +1 new ones :)
I would like to make this a community wiki at some point if possible.

share|improve this answer
+1, use customized bootstrap from twitter (with less) and it does save a lot of time – mreq Nov 22 '11 at 11:48
1  
Less Framework 4 is also an interesting option, and helps with mobile, though may require a bit more "beforehand" thought on structuring your website: lessframework.com – Steph Rose Nov 22 '11 at 12:16
1  
There's definite value in having a list of the available frameworks, but I think it's worth addressing the other part of the initial question. @Don mentioned that he "struggle[s] to place elements where they need to be". It's important to fully understand the thinking behind whatever framework you use. Learn from it, make sure you get your head around the decisions made so that you're comfortable with bending it to your own needs. If you can do that then you'll actually get more out of the framework and avoid any frustration. – CherryFlavourPez Nov 22 '11 at 20:35
I also felt that "should I use a CSS framework?" was well-answered by others and I didn't want to 'poach' their info but I did want to provide a good list for anyone who finds this question and maybe eventually make it a communty-wiki – Michael Durrant Nov 23 '11 at 13:10
1  
foundation.zurb.com Responsive Grid CSS framework ;) – brutuscat Dec 2 '11 at 19:52
show 3 more comments

For me, CSS frameworks like 960 or cssgrid.net bring a lot to the table, and haven't really caused me any problems, as long as I use them as they're supposed to be used.

It really saves a huge amount of time when you're trying to setup a relatively complex layout... and I'm sure you have better things to do with your time, for instance... everything else!

Which one is really a matter of preference. I really like http://cssgrid.net for it's fluid layout, it scales really well when resizing the browser.

There's several others that are pretty good as well. 960.gs, twitter bootstrap, blueprint...

share|improve this answer

Keep in mind if you use one of these frameworks, you will probably never learn how to create layouts with floats. It is really not that hard, and personally I would never use a CSS grid unless non-CSS developers were required to build out pages quickly. This is a good site: http://css.maxdesign.com.au/floatutorial/. Also this is one of the better books on basic CSS http://shop.oreilly.com/product/9780596526870.do — check it out.

share|improve this answer
I'm ashamed to admit I've already read that book (though it was a few years ago now) – Don Nov 22 '11 at 13:13
It has a great section on float layouts. – Scott Simpson Nov 22 '11 at 13:47
3  
Nothing is "that hard" - except learning those easy bits in a hundred different systems today that you don't even consider, from editors to OS to language, back end to front end technologies from databases to browsers, there's a lot of parts to today's technology. Any area, no matter how simple, that I can use others work as a building block, works for me. My development today is more about glueing pieces together that I have a broad understanding of, with more detail in 1 area and not trying to get the details of every area in my head or I become a jack of all trades but a master of none. – Michael Durrant Feb 1 '12 at 15:29

There are so many answers to this question - it will come down to personal preference and your own style of coding. If you're happy to give up on the idea of some "ideal", purely semantic markup then CSS frameworks can be a great timesaver.

They basically stop you from reinventing the wheel every time you come to write some code. If you aren't entirely sure that something like 960 is for you, perhaps something more like Frameless which, in it's own words:

...doesn’t include any code. It’s just an idea for a specific type of adaptive grid. You can use it as a good starting point for a new design, but you’ll still have to do all the hard work of designing and coding yourself.
share|improve this answer

I would like to answer your question with "neither" (all your problems will not go away, but neither will a framework cause more problems) or maybe "both."

That is, I appreciate Michael Durrant's answer and desire to build a list of frameworks. Any one is likely to solve many problems, improve development speed, etc. (as others have mentioned here).

But at the same time, if you don't have the practical understanding of how to modify your css within that framework to "break the rules" or push it to further limits, then you will not likely excel beyond it.

That's just my thoughts.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.