All Projects → dmhendricks → Bootstrap Grid Css

dmhendricks / Bootstrap Grid Css

Licence: other
The grid and responsive utilities classes extracted from the Bootstrap 4 framework, compiled into CSS.

Projects that are alternatives of or similar to Bootstrap Grid Css

Reactsimpleflexgrid
A way to quickly add a Grid Layout to your React app 🚀
Stars: ✭ 181 (+52.1%)
Mutual labels:  grid, grid-layout, bootstrap
Grid Cheatsheet
CSS Grid cheat sheet
Stars: ✭ 83 (-30.25%)
Mutual labels:  grid, grid-layout, css-grid
Cssgridgenerator
🧮 Generate basic CSS Grid code to make dynamic layouts!
Stars: ✭ 3,943 (+3213.45%)
Mutual labels:  grid, grid-layout, css-grid
gridbugs-ru
Перевод списка багов в CSS Grid Layout, курируемого Рейчел Эндрю
Stars: ✭ 27 (-77.31%)
Mutual labels:  grid, css-grid, grid-layout
60gs
60GS - 60 Columns Grid System based on CSS Grid Layout
Stars: ✭ 65 (-45.38%)
Mutual labels:  grid, css-grid, grid-layout
grid-layout
grid-layout is a layout engine which implements grid, can use in canvas/node-canvas
Stars: ✭ 43 (-63.87%)
Mutual labels:  grid, css-grid, grid-layout
grid-garden
Solutions to CSS Grid Garden
Stars: ✭ 79 (-33.61%)
Mutual labels:  grid, css-grid, grid-layout
Interior
Design system for the modern web.
Stars: ✭ 77 (-35.29%)
Mutual labels:  grid, grid-layout, css-grid
Dragact
a dragger layout system with React style .
Stars: ✭ 710 (+496.64%)
Mutual labels:  grid, grid-layout
Folo
📋 Form & Layout JS Components
Stars: ✭ 26 (-78.15%)
Mutual labels:  grid, css-grid
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 (-36.97%)
Mutual labels:  grid, css-grid
Vue Grid Layout
A draggable and resizable grid layout, for Vue.js.
Stars: ✭ 5,170 (+4244.54%)
Mutual labels:  grid, grid-layout
Tabulator
Interactive Tables and Data Grids for JavaScript
Stars: ✭ 4,329 (+3537.82%)
Mutual labels:  grid, grid-layout
Burnoutjs
🎮 2D game engine for manage collisions. Made with javascript and CSS Grid Layout.
Stars: ✭ 45 (-62.18%)
Mutual labels:  grid-layout, css-grid
React Gridlist
A virtual-scrolling GridList component based on CSS Grids
Stars: ✭ 394 (+231.09%)
Mutual labels:  grid, grid-layout
Csslayout
This project is developed by Nguyen Huu Phuoc. I love building products and sharing knowledge.
Stars: ✭ 4,832 (+3960.5%)
Mutual labels:  grid-layout, css-grid
React Native Grid List
🌁 Grid list component implemented with FlatList
Stars: ✭ 74 (-37.82%)
Mutual labels:  grid, grid-layout
Pills
A simple responsive CSS Grid for humans. View Demo -
Stars: ✭ 1,482 (+1145.38%)
Mutual labels:  grid, css-grid
Awesome Grid Layout
👓 A curated list of CSS Grid Layout Module or only Css Grid.
Stars: ✭ 91 (-23.53%)
Mutual labels:  grid-layout, css-grid
Ungrid
ungrid - the simplest responsive css grid
Stars: ✭ 1,292 (+985.71%)
Mutual labels:  grid, css-grid

Developer Release GitHub License GitHub Downloads NPM Downloads Donate Twitter

bootstrap-grid.css

Original Copyright: (c) 2011-2018 Twitter, Inc.

📌 View Demo

Purpose

There are times when you only want to use the excellent Bootstrap grid functionality but don't want the extra classes and typography changes included, often when asked to work on existing client sites that do not include any responsive frameworks and you just want to get the changes done quickly and responsively. With Bootstrap 4, extracting the grid functionality is easy.

Included Features

  • Grid framework
  • Responsive Utilities (ported from alpha)
  • .img-fluid class (formerly .img-responsive in Bootstrap 3)
  • clearfix utility

Installation

NPM

npm install bootstrap-grid-only-css --save

Bower Installation

bower install bootstrap4-grid-only

Usage

Unlike traditional Bootstrapped, the grid must be wrapped with the .bootstrap-wrapper class in an attempt to minimize potential conflicts with other libraries.

Simply download the appropriate CSS file and include it in your HTML header (you only need one):

  • bootstrap-grid.css - The expanded version
  • bootstrap-grid.min.css - The minified version

Documentation for the grid system may be found on the Bootstrap web site.

Linking Stylesheets

Add the following to the head of your web page:

<link rel="stylesheet" href="dist/css/bootstrap-grid.min.css" />

CDN: jsDelivr

Supports both HTTP and HTTPS.

<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dmhendricks/[email protected]/dist/css/bootstrap-grid.min.css" />

Basic Usage Example

<div class="bootstrap-wrapper">
	<div class="container">
		<div class="row">
			<div class="col-md-4">.col-md-4</div>
			<div class="col-md-4">.col-md-4</div>
			<div class="col-md-4">.col-md-4</div>
		</div>
		<div class="row hidden-sm-down"> <!-- Hidden on small screens -->
			<div class="col-md-6">.col-md-6</div>
			<div class="col-md-6">.col-md-6</div>
		</div>
	</div>
</div>

See the demo for more information.

Custom Build Tutorial

You can make your own custom build of Bootstrap by downloading the source, making changes to the SCSS files and compiling.

Here is how to accomplish what I have done here:

  1. Download and extract the Bootstrap source files
  2. Modify the SCSS files as desired. For example, to generate this build I added the .bootstrap-wrapper class to scss/bootstrap-grid.scss (lines 23 and 50), included the responsive utilities (line 43) and .img-fluid class (line 48). I also ported the scss/utilities/_visibility.scss responsive utilities that were found in alpha for convenience.
  3. Once you are done making your changes, use a program like Koala or Scout to compile the SCSS files into usable CSS files. If you have Gulp and npm installed, you can simply run the command: gulp styles
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].