column offset html code example
Example 1: columns center bootstrap 3
<div class="row">
<div class="col-md-2 col-md-offset-5"></div>
</div>
Example 2: col offset in bootstrap
.col-md-3 .offset-md-3
Example 3: bootstrap breakpoints
@media (min-width: 576px) { ... }
@media (min-width: 768px) { ... }
@media (min-width: 992px) { ... }
@media (min-width: 1200px) { ... }
Example 4: offset bootstrap
$grid-breakpoints: (
xs: 0,
sm: 480px,
md: 768px,
lg: 1024px
);
$container-max-widths: (
sm: 420px,
md: 720px,
lg: 960px
);