Responsive Grid Layout Framework [closed]

廉价感情. 提交于 2019-12-20 09:37:38

问题


I want an easy to use grid framework for my current web project. These are the features i would appreciate:

  • fluid grid layout: boxes that can be aligned horizontally (side by side), each having the same height (for example a 3-column layout), working with 100% width
  • responsiveness: adapts automatically when resizing the browser window
  • mobile devices: shows an alternate fitting layout for pads and mobile phones
  • text size: optionally adjust text sizes dynamically (for example full width headlines)
  • image size: optionally adjust images sizes dynamically (for example full width image galleries)
  • breakpoints: optionally define width values which trigger events which alter the layout (for example removing buttons if the width is fallen below a threshold)

Update

I found many grids, but narrowed it down to the following three promising frameworks that might be a good fit for my requirements:

  • Foundation
  • Semantic Grid
  • Golden Grid System

Here are all the others:

  • CSS Grid (not fluid)
  • 320 and Up (not fluid)
  • Columnal (not fluid)
  • Skeleton (not fluid)
  • SimpleGrid (not fluid)
  • Less Framework (not fluid)
  • Bootstrap (non-semantic classes)
  • Breakpoints.js (only breakpoints, too similar to media queries)
  • Adaptive images (only images)
  • FitText (only text)
  • Gridset (commercial)
  • HTML5 Boilerplate (old)

Normally, i would test them myself before asking here so that i can formulate more specific questions. But due to the vast amount of frameworks i'd like to hear some pointers where to begin.

  1. How are your experiences with these or other similar frameworks?
  2. Do you recommend a specific framework that matches my requirements?

Solution

I ended up using Foundation which is clearly the winner in this race - in my humble opinion.

Update 2

Bootstrap 3 is a real competition now, because it supports semantic grid classes too. And it supports SASS as well as LESS.


回答1:


I have used columnal priorly and it does provide most of the functionality that you want apart from the breakpoints feature. It is easy to use and is adaptive. In mobile screens the grids degrades to a stack so all the column contents are shown one under the other. However for the intelligent adaption feature, as you have outlined in the breakpoints feature : I would very strongly recommend you to use the CSS 3 media queries directly because that is exactly what they are meant for and they are not difficult to use. The CSS frameworks which provide these features under the sheets utilize media queries only.

Taking a look at http://twitter.github.com/bootstrap/scaffolding.html#responsive , Bootstrap's fluid grid does provide some convenient shortcuts for setting css properties for specific screen sizes which are not present in columnal.



来源:https://stackoverflow.com/questions/10741934/responsive-grid-layout-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!