-
Notifications
You must be signed in to change notification settings - Fork 29
Description
I'm guessing you haven't started on the responsive part of the less/fluid tree yet.
Regardless of the Fluid vs fixed question, I think it's important that the gridsystem used in this project should support both sass and less, in order to keep the respective branches as similar as possible.
Semantic.gs vs frameless/golden grid:
From a fluid standpoint, their more or less the same. But semantic uses pixels, and Golden uses em for non fluid elements... like height.
I feel em is a better choice, as it will make the design scale if the user changes the font size.
we can't really use % for height in a div etc, browsers tend to not like that... so that leaves us with px or em, px wont scale if the user changes the font size, but em does. giving the template a better way to adapt for visually impaired people.
I would vote for Frameless/golden due to em.
Could add both fixed and fluid to the markup, all that would be needed is a body tag class. It's more work, but would let people chose for them self what version they prefer, after all, if the design is originally fluid, it's only the wrappers and elements like sidebars that would need to be changed if someone wanted fixed width.