Grid system built on top of flex. Heavily influenced by Bootstrap.
Perfect partner for Topcoat but it can be used with or without any framework you want.
Check out the live demo or take a look at the example folder.
Flexbox grid uses classes like Bootstrap so you don't have to learn anything new.
<div class="row">
<div class="col-xs-1">
col-xs-1
</div>
</div>
<div class="row">
<div class="col-xs-6">
col-xs-6
</div>
</div>
<div class="row">
<div class="col-xs-2 col-xs-offset-6">
col-xs-2 col-xs-offset-6
</div>
</div>
There are also classes that fill the available space automatically.
<div class="row">
<div class="col-auto">
col-auto
</div>
<div class="col-auto">
col-auto
</div>
<div class="col-auto">
col-auto
</div>
</div>
- ptb2.me/flexgrid
- codepen.io/marcolago/pen/lqGFb
- philipwalton.github.io/solved-by-flexbox/demos/grids
- davidwalsh.name/stylus-grid
Make your changes in flexbox-grid.styl
and run grunt
to compile flexbox-grid.css
and flexbox-grid.min.css
- renamend
col-*
classes to responsivexs
,sm
,md
,lg
classes - made final CSS more readable by extending placeholder selectors
- added
.container
class as wrapper for.row
- fixes horizontal overflow
- initial release
Copyright (C) 2013 [Mirco Zeiss](mailto: [email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.