All Projects → chrisnager → Ungrid

chrisnager / Ungrid

ungrid - the simplest responsive css grid

Projects that are alternatives of or similar to Ungrid

responsive-css-grid
A super-lightweight, responsive, 8-column grid based on box-sizing
Stars: ✭ 46 (-96.44%)
Mutual labels:  grid, responsive, css-grid
tb-grid
tb-grid is a super simple and lightweight 12 column responsive grid system utilizing css grid.
Stars: ✭ 19 (-98.53%)
Mutual labels:  grid, simple, responsive
Dependency spy
Find known vulnerabilities in your dependencies
Stars: ✭ 87 (-93.27%)
Mutual labels:  npm, bower
Folo
📋 Form & Layout JS Components
Stars: ✭ 26 (-97.99%)
Mutual labels:  grid, css-grid
Omdb Graphql Wrapper
🚀 GraphQL wrapper for the OMDb API
Stars: ✭ 45 (-96.52%)
Mutual labels:  simple, npm
Showdown Htmlescape
Plugin for Showdown to prevent the use of arbitrary HTML and allow only the specific Markdown syntax.
Stars: ✭ 6 (-99.54%)
Mutual labels:  npm, bower
Composer Asset Plugin
NPM/Bower Dependency Manager for Composer
Stars: ✭ 898 (-30.5%)
Mutual labels:  npm, bower
Grid Cheatsheet
CSS Grid cheat sheet
Stars: ✭ 83 (-93.58%)
Mutual labels:  grid, css-grid
Flex Layout
Provides HTML UI layout for Angular applications; using Flexbox and a Responsive API
Stars: ✭ 5,705 (+341.56%)
Mutual labels:  grid, responsive
Axentix
Axentix is an open source Framework based on CSS Grid using HTML, CSS and JS. The easy layout control and grid system makes it one of the most easy to learn framework.
Stars: ✭ 75 (-94.2%)
Mutual labels:  grid, css-grid
Pkgmirror
Packages Mirroring
Stars: ✭ 62 (-95.2%)
Mutual labels:  npm, bower
Easygrid
EasyGrid - VanillaJS Responsive Grid
Stars: ✭ 77 (-94.04%)
Mutual labels:  grid, responsive
Cirrus
☁️ The CSS framework for the modern web.
Stars: ✭ 716 (-44.58%)
Mutual labels:  responsive, css-grid
Oji
(◕‿◕) Text Emoticons Maker
Stars: ✭ 668 (-48.3%)
Mutual labels:  simple, npm
Ax5ui Uploader
jQuery file uploader, HTML5(IE9+, FF, Chrome, Safari) - http://ax5.io/ax5ui-uploader/
Stars: ✭ 25 (-98.07%)
Mutual labels:  npm, bower
Simplestatemanager
A responsive state manager which allows you to run different javascript at different browser widths
Stars: ✭ 632 (-51.08%)
Mutual labels:  npm, bower
React Native Super Grid
Responsive Grid View for React Native
Stars: ✭ 971 (-24.85%)
Mutual labels:  grid, responsive
Xa
Beautiful & Customizable logger ❤️
Stars: ✭ 78 (-93.96%)
Mutual labels:  simple, npm
Inlineattachment
Easily paste and upload files/images in plain textareas
Stars: ✭ 597 (-53.79%)
Mutual labels:  npm, bower
Waffle Grid
An easy to use flexbox grid system.
Stars: ✭ 602 (-53.41%)
Mutual labels:  responsive, css-grid

ungrid logo

ungrid npm version Bower version

the simplest responsive css grid

What's this?

ungrid is a tiny, responsive, table-based CSS grid system. The entire ungrid.css file is 97 bytes minified.

@media (min-width: 30em) {
    .row { width: 100%; display: table; table-layout: fixed; }
    .col { display: table-cell; }
}

Get started

  • Install with npm npm install ungrid
  • Install with Bower bower install ungrid
  • Or just copy and paste the contents of ungrid.min.css into your CSS file.

How to use

To use, simply put as many .cols as you wish in your .rows and the .cols will automatically be evenly spaced. This allows you to roll your own simple grids. See it in action.

<div class="row">
    <div class="col"></div>
    <div class="col"></div>
    <div class="col"></div><div class="col"></div>
</div>

ungrid grid system

Helpful resources

License

The MIT License (MIT)

Copyright (c) 2014-2020 Chris Nager

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].