• Stars
    star
    159
  • Rank 235,916 (Top 5 %)
  • Language
    CSS
  • License
    Other
  • Created almost 9 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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

More Repositories

1

file-icon-vectors

A collection of file type icons in SVG format
CSS
253
star
2

wordpress-base-plugin

A starter template for WordPress plugins, with autoloading, namespaces and object caching (where available).
PHP
84
star
3

wordpress-output-buffering

A simple mu-plugin that buffers the entire WP process, capturing the final output for DOM manipulation.
PHP
17
star
4

wordpress-toolkit

A collection of helper classes and functions for WordPress plugins and themes.
PHP
14
star
5

signature-social-icons

Social media icons for your e-mail signatures.
HTML
9
star
6

jquery-modallink

A simple jQuery plugin to display any external links into a modal popup via iframe.
JavaScript
5
star
7

wordpress-network-subdomain-updater-plugin

A WordPress mu-plugin that updates network (multisite) sub-domains after MySQL data import.
PHP
4
star
8

carbon-fields-loader

[DEPRECATED] A WordPress plugin that loads the Carbon Fields framework.
PHP
4
star
9

php-combine-scripts

A simple PHP script example to combine and minify multiple JS or CSS files passed via URI
PHP
4
star
10

carbon-field-select-multiple

A custom multiple select field for Carbon Fields with optional Select2 support.
JavaScript
3
star
11

docker-socketio-relay

Dockerfile for a simple Node.js server to relay messages to Socket.IO clients.
HTML
3
star
12

woocommerce-order-progress

A WooCommerce plugin to display an order progress bar on a customer's order details page.
PHP
3
star
13

wordpress-restrict-by-ip-plugin

A WordPress plugin to restrict access to site(s), pages and/or content access by IP address or subnet mask.
PHP
2
star
14

hash-int

A PHP class to generate an alphanumeric hash of specified length from an integer.
PHP
2
star
15

detect-remote-device

A WordPress plugin that adds additional functions and shortcodes to modify output by device type - mobile, tablet or desktop.
PHP
2
star
16

nodejs-simple-message-relay

A simple Node.js server to relay messages and data to listening Socket.IO clients.
JavaScript
2
star
17

dashicons-extended

[WORK IN PROGRESS] A collection of icons intended to be a drop-in replacement that extends the dashicons library in WordPress.
CSS
2
star
18

wordpress-whmcs-licensing-example-plugin

An example plugin for validating license keys via the WHMCS Licensing Addon
PHP
2
star
19

page-analysis-tab-rank-math

An add-on for the Rank Math WordPress plugin that moves On-Page Analysis from the General tab to its own (Classic Editor).
PHP
2
star
20

dev-favicons

Favicons and app icons intended to be perceptible for different development environments.
1
star
21

dmhendricks.github.io

GitHub-hosted demo and documentation pages for projects by Daniel M. Hendricks
1
star
22

wordpress-lazy-loading-attribute-plugin

A WordPress plugin that adds Chrome's lazy loading attribute to images and iframes within post content
PHP
1
star
23

jquery-waituntilexists

jQuery plugin that runs handler function once specified element is inserted into the DOM.
JavaScript
1
star
24

wordpress-mu-common-toolkit

A must use (MU) plugin for WordPress that contains helper functions, snippets and a configuration registry.
PHP
1
star
25

wordpress-rewrite-content-urls-plugin

This plugin allows you to rewrite URLs in WordPress content, primarily created for developers sync'ing data from production to local development.
PHP
1
star