npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gridlayout

v1.0.2

Published

Lightweight grid system for advanced horizontal and vertical web app layouts, with support for older browsers.

Downloads

127

Readme

GridLayout

Build Status

Lightweight grid system for advanced horizontal and vertical web app layouts, with support for older browsers.

Installation

npm install gridlayout

or

bower install gridlayout

Why use GridLayout?

If you need to create complex app layouts, similar to native ones, with support for older browsers.

GridLayout is a ~1 KB (minified and gzipped) CSS file and a ~0.5 KB JavaScript file used only for Internet Explorer support.

If you just support modern browsers, you’re probably better off using Flexbox.

Features

  • Responsive: Mobile first and adapts to two other breakpoints.
  • Familiar markup: Class naming similar to the Bootstrap grid.
  • Vertical grids: Take up the entire height of the container and split it.
  • Vertical alignment: Align cell content vertically with just a class.
  • Scrollview: Scroll the content inside one of the grid cells.

Browser support

  • IE 8+
  • iOS 5+
  • Android 3+
  • Modern browsers

Browsers that support the overall grid, but not the scrollview:

  • Opera Mini
  • iOS 4
  • Android 2

Note:

For overall IE support you have to include the gridlayout-ie.js script.

For IE8, also include Respond.js, because the grid is mobile-first.

How to use

Basic layouts

GridLayout is built using display: table, so you don't have to specify an exact cell size.

If you don't set cell sizes, they will be evenly sized.

<div class="gl">
  <div class="gl-cell">...</div>
  <div class="gl-cell">...</div>
</div>

Vertical layout

You can also do vertical layouts, using the gl-vertical class on the grid container.

Vertical layouts will take up the entire height of their container.

<div class="gl gl-vertical">
  <div class="gl-cell">...</div>
  <div class="gl-cell">...</div>
</div>

Media queries

The breakpoints used in GridLayout are:

  • Small (sm): all screen sizes.
  • Medium (md): any screen 640px or wider.
  • Large (lg): any screen 1024px or wider.

By default, the grid will show up on medium(640px or wider) screens.

If you want the grid to show up on any screen size, use the gl-sm class.

<div class="gl gl-sm">
  ...

Column sizing

GridLayout provides a 12-column grid that you can use on both horizontal and vertical grids.

On horizontal grids the size is the width, while on vertical grids the size is the cell height.

The class names contain the media query breakpoint and the size.

  • Use gl-sm-1 through gl-sm-12 to size cells on any screen size. If you want the cells to show up small screens, make sure the grid container has the gl-sm class.
  • Use gl-md-1 through gl-md-12 for cell sizes on medium screens.
  • Use gl-lg-1 through gl-lg-12 for cell sizes on large screens.
<div class="gl">
  <div class="gl-cell gl-md-4 gl-lg-2">...</div>
  <div class="gl-cell gl-md-8 gl-lg-10">...</div>
</div>

You can also manually set a cell size with CSS, and the other cells without a size set will automatically resize.

Nesting

You can easily nest grids, just make sure you include the gl grid container.

<div class="gl gl-vertical">
  <div class="gl-cell">

    <div class="gl">
      <div class="gl-cell">...</div>
      <div class="gl-cell">...</div>
    </div>

  </div>
  <div class="gl-cell">...</div>
</div>  

To make a grid to take up the full height of its container, use the gl-fill class.

<div class="gl gl-vertical">
  <div class="gl-cell">

    <div class="gl gl-fill">
    ...

Scrollviews

By default, the cells will expand to fit their contents.

To have fixed cell sizes, and have the content scroll, you can use the scrollview.

Because of cross-browser concerns, the scrollview requires two containers.

<div class="gl">
  <div class="gl-cell">

    <div class="gl-scrollview">
      <div class="gl-scrollview-content">
      ...
      </div>
    </div>

  </div>
</div>

Full height children

To have a full-height child element in a gl-cell without using a scrollview (eg. as with sticky footers) use the gl-fill class, instead of height: 100%, on the child element.

This helps the IE support script find your element and size it correctly, because IE doesn't pass the correct height to gl-cell children.

Because of Firefox issues with passing height to child elements without having a specific height set on the parent, you also have to use the gl-fill class on the parent gl-cell.

<div class="gl">
  <div class="gl-cell gl-fill">

    <div class="gl-fill">
      Full Cell Height Container
    </div>

  </div>
</div>

Vertically aligning content

You can align content vertically inside cells using the gl-align-middle and gl-align-bottom classes.

<div class="gl">
  <div class="gl-cell gl-align-middle">...</div>
  <div class="gl-cell gl-align-bottom">...</div>
</div>

Examples

License

GridLayout is licensed under the MIT license.