I'm starting building a website good for mobile devices too. So I'm also starting studying media queries and the various grid frameworks. I've taken a look to all the 'main players' like inuit, the semantic grid etc.. and found that probably the best one for me is the frameless grid:

http://framelessgrid.com/

The author says it's 'the spiritual successor to Less Framework':

http://lessframework.com/

Ok. I've studied a lot all the less/css code and html code of the main framelessgrid.com page (that chould implement the frameless grid) but I can't fugure out how really I can implement it.

  • First of all, what does he exactly mean by 'frameless'? Simply that it's not a framework? And apart of having free column widths and 'inverted' media queries to be 'mobile first', how does it differs from lessframework?

  • How should I exactly use the .less variables (particularly the @cols series)?

  • What does exaclty mean 'Adapt column by column, not pixel by pixel.'? How should one put this concept in practice?

:)

link|improve this question

60% accept rate
feedback

4 Answers

up vote 7 down vote accepted

Finally I'm using the frameless grid. Ok. I then want to answer my own questions:

  1. Don't know :P I mean, that name, don't know. It doesn't matter, though.. I also invited the frameless grid author to answer here, but he didn't.

  2. The @cols vars. I think that basically, THEY ARE the frameless grid. Well, they're not, since the frameless grid it's 'only' an idea. But in practice, well, it's the main css difference against 'standard' approach. SIMPLY, you define the width of elements IN COLUMNS instead of PX. That's all. This of course can be done only using Less or Scss. Since I didn't know less and scss, I couldn't fully undestand the main idea.

You'll end up 'saying' that an element is 8 columns width, another 5 columns width etc.. Much more simple than calculating pixels.

3 See answer 2 :P

Hope this will help someone else.

link|improve this answer
1  
Thanks, the documentation on the site is lacking. Your answer for no2 explains it well :) – RichW Dec 28 '11 at 23:14
feedback

Been grinding at the framless concept for about a month now and hit the light bulb moment about a week ago...not sure how much was the frameless concept or how much was working with less. But i do know the concept is pretty rock solid so far.

I believe theres no documentation because what he built is a starting point for the developer to branch off on his own path and find the best way to build his less doc and eventually build a framework of their own.

But i started swaping out gutter and column widths with other variabls and dividing them to find a good ratio brttween elements. So in the end there becomes a master var that can change the entire theme with one number change. The posibilitis are endless.

link|improve this answer
I agree, thank you. One will end up using frameless as a starting point and yes, properly used, at least in certain situations, can be a way to change all dimensions at once with just a master var. One should really use it in 1 or 2 projects to fully understand the possibilities. By the way, in the end, I'm partially using it, but also I see other frameworks coming out.. :) So, maybe next month we'll be speaking of some other framework.. :) – Stratboy Feb 28 at 16:02
feedback

If you're coming at css from a programming side, I highly recommend less. It will really put css into your programming mind in a good way.

One of the issues I've had was the concept of processing your css on each page load (which is probably no worse than processing a javascript framework) or setting up the less compiler to run on your server.

There is a better way. Simply install winless if you're on windows or Less app for OS X. They are simple file watchers that will compile your finished css every time you make a change to your .less files. If you set your project up like this:

/styles /css /less

They will both put your compiled css files in the css directory. Then you can link your html to the css files and not have to worry about compiling on the fly. They both work great with your source control platform as well.

Less only has about a page of documentation, so you can get into it and be proficient in about an hour or so. It's really fun to work with because you pretty much already know the syntax if you know css. Less is a superset of css, so everything you know about css is still valid. The few less syntax additions are really easy to grasp.

I prefer the frameless setup a little more than the Less Framework, but that's a matter of choice.

Also, if you need a little more than the frameless docs give you, make sure you check out the css that's used for the actual site.

Have fun!

link|improve this answer
I already use less, I already checked the code, I already done 2 sites with the less framework. That's the reason I already answered my question. – Stratboy Jan 12 at 15:55
thank you! I didn't even think to check the repo for the uncompiled css. It helps a lot to see the values before it's compiled. – ifightcrime Jan 25 at 1:20
feedback

In addition to Stratboy's answers above, I'd like to share my question and others answers about the less CSS Joni used for Framelessgrid. I had a hard time understanding less CSS and the SO community really helped.

How to read this LESS css?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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