responsive - Custom 3 columns template [Bootstrap] -


in site have bootstrap grid template 2 columns, this: enter image description here

i add box/column under under col-sm-4, respecting responsive bootstrap, in image: enter image description here

is possible? thank in advance.

in grid system of bootstrap column used division row, create 2 rows in 1 column following ways

.block {    background: gray;    min-height: 100px;    height: 100%;  }
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" />  <div class="container" style="width:100%">    <div class="row">      <div class="col-sm-4">        <div class="row">          <div class="col-sm-12">            <div class="block">                         </div>          </div>        </div>        <div class="row">          <div class="col-sm-12">            <div class="block" style="background: red">              b            </div>          </div>        </div>      </div>      <div class="col-sm-8">        <div class="block">          c        </div>      </div>    </div>  </div>

maybe can achieve need, similar add 2 block elements in left column


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -