sriyanto

Basic Structure of a Bootstrap Grid

Aug 7th, 2021 (edited)
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.39 KB | None | 0 0
  1. <!-- Control the column width, and how they should appear on different devices -->
  2. <div class="row">
  3.   <div class="col-*-*"></div>
  4.   <div class="col-*-*"></div>
  5.   <div class="col-*-*"></div>
  6. </div>
  7.  
  8. <!-- Or let Bootstrap automatically handle the layout -->
  9. <div class="row">
  10.   <div class="col"></div>
  11.   <div class="col"></div>
  12.   <div class="col"></div>
  13.   <div class="col"></div>
  14. </div>
Add Comment
Please, Sign In to add comment