Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@material/layout-grid

Package Overview
Dependencies
Maintainers
1
Versions
1660
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@material/layout-grid

The Material Components for the web layout grid component

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
764K
increased by2.23%
Maintainers
1
Weekly downloads
 
Created
Source

mdc-layout-grid

MDC layout grid is a CSS-only component that implements the Material Design layout grid guidelines, and makes them available to developers as CSS classes and Sass mixins.

It uses CSS Grid where possible, with a CSS Flexible Box fallback everywhere else.

Installation

npm install --save @material/layout-grid

The layout grid

A grid consists of a group of cells, which get positioned in sequence according to a predefined number of columns. Cells specify how many columns to span (the default being 4), and get placed side by side while there is room. When there isn't enough room for a cell, it gets moved to the beginning of the next row, and placement continues as usual.

The grid has 12 columns in desktop mode (>= 840px), 8 columns in tablet mode (>= 480px), and 4 columns in phone mode (< 480px). Column widths are variable; margins and gutters are fixed, with columns taking up the remainder of the space.

Margins (the space between the edge of the grid and the edge of the first cell) and gutters (the space between edges of adjacent cells) are user-definable, with the Material Design spec recommending 8px, 16px, 24px or 40px as the sizes to choose from. The default margin and gutter are both 16px, but they don't have to be the same size.

The grid and cells are not styled in any way, serving only for alignment and positioning of elements.

CSS class usage

<div class="mdc-layout-grid">
  <div class="mdc-layout-grid__cell"></div>
  <div class="mdc-layout-grid__cell"></div>
  <div class="mdc-layout-grid__cell"></div>
</div>

The grid should have the mdc-layout-grid class, and every cell should have the mdc-layout-grid__cell class. Behavior for grids containing direct children without the mdc-layout-grid__cell class is undefined.

Margins and gutters

The default size for both the margins and gutters in MDC layout grid is 16px.

You can change the margins and gutters for a grid using the --mdc-layout-grid-margin and --mdc-layout-grid-gutter custom properties, respectively. This requires support for CSS custom properties on the end-user's browser.

The Material Design spec recommends 8px, 16px, 24px or 40px as the sizes to choose from, but MDC layout grid doesn't impose any restrictions.

.my-grid {
  --mdc-layout-grid-margin: 40px;
  --mdc-layout-grid-gutter: 16px;
}

Note: Due to the implementation of MDC layout grid, it's not possible to use a margin smaller than half of the size of the gutter, in most browsers. As support for CSS Grid lands in browsers, this limitation will go away, as MDC layout grid is progressively enhanced to support it.

Column spans

<div class="mdc-layout-grid">
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2"></div>
</div>

Cells have a default span size of 4 columns, with other sizes being possible by applying one of the span classes, of the form mdc-layout-grid__cell--span-{columns}, where {columns} is an integer between 1 and 12.

If the chosen span size is larger than the available number of columns at the current screen size, the cell behaves as if its chosen span size were equal to the available number of columns at that screen size. That is, it takes up the entirety of its row, and no more than that.

Column spans for specific screen sizes

It's possible to tweak the behavior of cells further by defining different column spans for specific screen sizes. These override the default at that size.

You can do that with the mdc-layout-grid__cell--span-{columns}-{screen_size} classes, where {columns} is an integer between 1 and 12 and {screen_size} is one of desktop, tablet or phone.

<div class="mdc-layout-grid">
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6 mdc-layout-grid__cell--span-8-tablet"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4 mdc-layout-grid__cell--span-6-tablet"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-2 mdc-layout-grid__cell--span-4-phone"></div>
</div>

In the example above, the first cell has a default span of 6, the second 4, and the third 2. However, at tablet sizes, the first cell becomes 8 columns wide instead, and the second 6 columns wide. At phone sizes, the third cell becomes 4 columns wide.

Reordering

By default, items are positioned in the source order. However, you can reorder them by using the mdc-layout-grid__cell--order-{number} classes, where {order} is an integer between 1 and 12.

<div class="mdc-layout-grid">
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--order-3"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--order-1"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--order-2"></div>
</div>

Please bear in mind that this may have an impact on accessibility, since screen readers and other tools tend to follow source order.

Alignment

Items are defined to stretch, by default, taking up the height of their corresponding row. You can switch to a different behavior by using one of the mdc-layout-grid__cell--align-{position} alignment classes, where {position} is one of {top}, {middle} or {bottom}.

<div class="mdc-layout-grid">
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--align-top"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--align-middle"></div>
  <div class="mdc-layout-grid__cell mdc-layout-grid__cell--align-bottom"></div>
</div>

Sass mixin usage

mdc-layout-grid

@include mdc-layout-grid(16px, 16px, 1600px);

mdc-layout-grid defines a grid and should be applied to the container element. The mixin takes three parameters:

  • $margin: the size of the grid margin.
  • $gutter: the size of the gutter between cells.
  • $max-width (optional): the maximum width of the grid, at which point space stops being distributed by the columns.

Note that the margin and gutter can be overriden at runtime by using the CSS custom properties detailed in the "Margins and gutters" section under "CSS class usage".

mdc-layout-grid-cell

@include mdc-layout-grid-cell(16px, 4);

mdc-layout-grid-cell defines a cell and should be applied to the cell element. The mixin takes two parameters:

  • $gutter: the size of the gutter between cells. Be sure to use the same value as for the parent grid.
  • $span (optional, default 4): how many columns this cell should span (1 to 12).

mdc-layout-grid-cell-order

@include mdc-layout-grid-cell(16px);
@include mdc-layout-grid-cell-order(2);

mdl-layout-grid-cell-order reorders a cell inside a grid. It's an optional mixin that should be applied to the cell element, together with the mandatory mdc-layout-grid-cell.

It takes a single parameter, $order, which expects a value from 1 to 12.

mdc-layout-grid-cell-align

@include mdc-layout-grid-cell(16px);
@include mdc-layout-grid-cell-align(top);

mdl-layout-grid-cell-align aligns a cell vertically inside a grid. It's an optional mixin that should be applied to the cell element, together with the mandatory mdc-layout-grid-cell.

It takes a single parameter, $position, which expects top, middle or bottom as values.

Keywords

FAQs

Package last updated on 21 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc