A super-lightweight, responsive, 8-column grid based on box-sizing
.
You may install this plugin with this command:
npm install responsive-css-grid --save-dev
Issues with the output should be reported on the responsive-css-grid
issue tracker.
These CSS classes for column sizes are specific to the total width of <div class="container">
:
class | column width |
---|---|
.col-1-2 |
half |
.col-2-3 |
two-thirds |
.col-1-3 |
one-third |
.col-1-4 |
one-fourth |
.col-1-8 |
one-eighth |
<div class="container">
<div class="row clearfix">
<div class="col-2-3"> <!-- column is 2/3 the total width -->
Your content
</div>
<div class="col-1-3"> <!-- column is 1/3 the total width -->
Your content
</div>
</div>
...
The responsive CSS grid works in the latest versions of:
- Chrome
- Firefox
- Opera
- Safari
- Edge
- Internet Explorer
- iOS Safari
- Chrome for Android
The above list is non-exhaustive. This grid works perfectly with any browser that supports box-sizing
, including IE8+.