1.0.0 • Published 3 years ago

bootstrap-3-grid v1.0.0

Weekly downloads
7
License
MIT
Repository
github
Last release
3 years ago

Bootstrap-grid (ver 3.4.1)

Only grid and responsive classes

Getting started (the bower version is no longer up to date)

  1. npm install bootstrap-3-grid --save
  2. Include this file bootstrap-3-grid.css

Important note!!!

This style contains only grid and responsive classes. Bootstrap 3 based on box-sizing. To include box-sizing in your project click here or read below:

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}