php - How can we display dynamic grid layout like the attached screenshot also order by number with the help of bootstrap -


i want make layout attached image.blocks render on page in same order number.

for example :- block(1) show first after block (2) , on...

design image question

ah! 1 below works perfectly. check bootply did.

<div class="col-sm-3">   <div class="col-sm-12">1</div>   <div class="col-sm-12">5</div> </div> <div class="col-sm-3">     <div class="col-sm-12">2</div>     <div class="col-sm-12">6</div> </div> <div class="col-sm-3">     <div class="col-sm-12">3</div>     <div class="col-sm-12">7</div> </div> <div class="col-sm-3">     <div class="col-sm-12">4</div>     <div class="col-sm-12">8</div> </div> 

i know want push , pull once want rearrange order of div in small screen link push , pull answered on stack overflow.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -