This module has been moved to: (https://github.com/Blocss/blocss)
A Blocss component for a CSS grid. The grid makes use of inline-block and
box-sizing to provide features that float-based layouts cannot.
N.B. This component relies on particular dimensions being applied to cells in the grid via other classes. For example the Blocss dimensions extension.
Read more about Blocss.
$ bower install --save blocss-grid
- Fluid layout.
- Intelligent cell wrapping.
- Horizontal centering of cells.
- Custom vertical alignment of cells (top, bottom, or middle).
- Cell width is controlled independently of grid gutter.
- Infinite nesting.
- Built-in redundancy.
-
.grid: core component -
.grid--rev: reverse grid direction -
grid--center: center-align all child.grid__cell -
grid--right: right-align all child.grid__cell -
grid--middle: middle-align all child.grid__cell -
grid--bottom: bottom-align all child.grid__cell -
grid--narrow: narrow the gutter by half -
grid--wide: widen the gutter by half -
grid--flush: no gutter -
.grid__cell: a child cell of.gridthat wraps grid content -
.grid__cell--center: center align a single cell
-
$blocss-grid-namespace- Prefixes classes with a namespace, defaults to$blocss-namespace -
$blocss-use-grid- Enables/disables entire grid code, defaults totrue -
$blocss-grid-gutter- Defines gutter width, defaults to$blocss-space -
$blocss-enable-grid-rev- Enables/disables reverse grid mode, defaults tofalse -
$blocss-enable-grid-right- Enables/disables right alignment mode, defaults tofalse -
$blocss-enable-grid-center- Enables/disables center alignment mode, defaults tofalse -
$blocss-enable-grid-middle- Enables/disables middle alignment mode, defaults tofalse -
$blocss-enable-grid-narrow- Enables/disables narrow gutter option, defaults tofalse -
$blocss-enable-grid-wide- Enables/disables wide gutter option, defaults tofalse -
$blocss-enable-grid-flush- Enables/disables no gutter option, defaults tofalse
A simple grid is easy to create. A grid container can have any number of child cells.
<div class="grid [grid--center|grid--right|grid--rev|grid--middle|grid--bottom|grid--narrow|grid--wide|grid--flush]">
<div class="grid__cell u-3-12 u-1-1--palm"></div>
<div class="grid__cell u-3-12 u-1-1--palm"></div>
<div class="grid__cell u-3-12 u-1-1--palm"></div>
<div class="grid__cell grid__cell--center u-3-12 u-1-1--palm"></div>
</div>All the api calls which are deprecated: none
- Google Chrome (latest)
- Opera (latest)
- Firefox 4+
- Safari 5+
- Internet Explorer 8+
NOTE: Some Android stock browsers refuse to apply a font-size of 0, instead they render a 8px font size and thus break the layout due to the spacing between grid__cells. If you want to support these browsers you have to comment-out the whitespace in the markup:
<div class="grid [grid--center|grid--right|grid--rev|grid--middle|grid--bottom|grid--narrow|grid--wide|grid--flush]">
<div class="grid__cell u-3-12 u-1-1--palm"></div><!--
--><div class="grid__cell u-3-12 u-1-1--palm"></div><!--
--><div class="grid__cell u-3-12 u-1-1--palm"></div><!--
--><div class="grid__cell grid__cell--center u-3-12 u-1-1--palm"></div>
</div>