Giter VIP home page Giter VIP logo

easygrid's Introduction

EasyGrid

An intuitive, flexible CSS grid with minimal footprint

Usage

This grid system requires a parent element with the class grid applied to it. It will then treat all children as grid items (no asterisk selector used).
The grid will have as many columns as it has child elements, but you can override the columns (think of the colspan attribute). Media queries are in place to resize the rows for smaller screens, but you should expand these based on your use case.
Demo is available on JSFiddle

To use EasyGrid in your project, include it in your HTML:

<link href="assets/css/grid.css" rel="stylesheet" type="text/css" />

Examples

Example base grid markup:

    <div class="grid">
      <div>1/2</div>
      <aside>1/2</aside>
    </div>

Example using override classes:

    <div class="grid">
      <div class="grid-1-3">1/3</div>
      <div class="grid-2-3">2/3</div>
    </div>

Example with a form (oh yes):

    <form class="grid" method="get" action="">
      <input type="text" name="name" placeholder="1/3" />
      <input type="email" name="email" placeholder="1/3" />
      <input type="submit" value="1/3" />
    </form>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.