Gridfor.Me 2.0

Layering for life

What is it?

Grid overlays helps you to keep you design consistent. It allows you to maintain both vertical rhythm and horizontal alignment.

Using gridfor.me you create an overlay by simply adding a stylesheet to your page:

<link rel="stylesheet" href="https://gridfor.me/12/95/30/15/">

Just like that. You'll get you a grid overlay with 12 columns, 95px width cells, 30px baseline and 15px gutter. Just like the one you can see on this page.

Make it yours

You can customize every aspect of your grid.

Understand the parameters:

https://gridfor.me/columns/cellwidth/baseline/[gutter]/?bg=R,G,B,A&h=R,G,B&v=HEX

Colors are RGBA and can be expressed in the forms:

Note: If you omit the alpha component it defaults to opaque.

Grid examples

8 columns, 120px width cells, 24px baseline, no gutters, white transparent background, pink baseline and blue columns.

<link rel="stylesheet" href="https://gridfor.me/8/120/24/?bg=ffffffff&h=255,0,255&v=0,133,255">

16 columns, 80px width cells, 32px baseline, 16px gutters, blue half-transparet background, black baseline and ping columns.

<link rel="stylesheet" href="https://gridfor.me/16/80/32/16/?bg=0,0,255,127&h=000000&v=ff00ff">

Getting only the grid image

If you just want the grid image to use in your own fashion, simply prepend the url path with an i:

https://gridfor.me/i/12/95/30/15/

So your CSS may be:

html { background-image: url(https://gridfor.me/i/12/95/30/15/); }