Reader small image

You're reading from  Bootstrap 4 Cookbook

Product typeBook
Published inJun 2017
Reading LevelBeginner
PublisherPackt
ISBN-139781785889295
Edition1st Edition
Languages
Right arrow
Author (1)
Ajdin Imsirovic
Ajdin Imsirovic
author image
Ajdin Imsirovic

Ajdin Imsirovic is a full-stack web developer who has published several courses on the subject of web design and web development. He has also authored three books, Bootstrap 4 Cookbook, Elm Web Development, and Vue.js Quick Start Guide. In his fourth book, Vue CLI 3 Quick Start Guide, he introduces readers to the rich ecosystem of frontend tooling and best practices.
Read more about Ajdin Imsirovic

Right arrow

Making col-* classes work


In this recipe, we will only use the default Bootstrap 4 classes to demonstrate some basic gotchas related to the default, non-flexbox-enabled grid. Practically, this means that we will not even have to touch any CSS, as all the styling will be set through the class attributes in the appropriate HTML elements.

Getting ready

To follow the recipe easier, refer to the code provided with the book (folder: chapter02-06 of the codebase).

How to do it...

  1. Let's add all the files we'll use in this recipe:
      touch app/partial/_chapter-02-06-html.ejs app/partial/_recipe02-
      06-css.ejs main-02-06.scss
  1. Add the following code to app/partial/_chapter-02-06-html.ejs:
      <div class="container-fluid">
       <div class="row bg-inverse m-4 p-4 lead">
       <div class="col-md-6 bg-success p-3 text-white">This div takes  
       up 6 of 12 columns above the <code>md</code> breakpoint. Below  
       the <code>md</code> breakpoint, it stacks...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Bootstrap 4 Cookbook
Published in: Jun 2017Publisher: PacktISBN-13: 9781785889295

Author (1)

author image
Ajdin Imsirovic

Ajdin Imsirovic is a full-stack web developer who has published several courses on the subject of web design and web development. He has also authored three books, Bootstrap 4 Cookbook, Elm Web Development, and Vue.js Quick Start Guide. In his fourth book, Vue CLI 3 Quick Start Guide, he introduces readers to the rich ecosystem of frontend tooling and best practices.
Read more about Ajdin Imsirovic