Grid
Bootstrap grid includes a responsive, mobile first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes predefined classes for easy layout options, as well as powerful mixins for generating more semantic layouts
Introduction
Grid systems are used for creating page layouts through a series of rows and columns that house your content. Here's how the Bootstrap grid system works:
You must start with
rowThere are pre-define classes of columns starting from 1 to 12, example
col-md-1tocol-md-12Each of these value represent a percentage of the screen, 1 being the smallest and 12 being 100%
You can create different grid pattern that finally forms 12
eg :
<div class="row"> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> <div class="col-md-1">.col-md-1</div> </div> <div class="row"> <div class="col-md-8">.col-md-8</div> <div class="col-md-4">.col-md-4</div> </div> <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"> <div class="col-md-6">.col-md-6</div> <div class="col-md-6">.col-md-6</div> </div>There different grids for different screen sizes, "col-md" md stands for medium screen, the following table explains
EXTRA SMALL DEVICES PHONES (<768PX)SMALL DEVICESTABLETS (≥768PX)MEDIUM DEVICESDESKTOPS (≥992PX)LARGE DEVICESDESKTOPS (≥1200PX)Grid behaviorHorizontal at all timesCollapsed to start, horizontal above breakpointsContainer widthNone (auto)750px970px1170pxClass prefix.col-xs-.col-sm-.col-md-.col-lg-# of columns12Column widthAuto~62px~81px~97pxGutter width30px (15px on each side of a column)NestableYesOffsetsYesColumn orderingYes
Last updated