/grcd

Grids Everywhere !

Primary LanguageJavaScript

grcd

Use grcd to add grids to your website.

Inline docs GitHub version Bower version demo included Made With Love

To install grcd with Bower:

bower install grcd

How to use

Use the minified grcd.min.js from the dist folder & place the following in the head of your document.

{
	dependencies : jQuery Latest
};

Setup

$(function () {
    $.grcd();
});

will create a grid layer on your html page.

optional width to suite your html page
$(function () {
    $.grcd({
        width: '16'
    });
});

remove

$.grcd.destroy();