Answers for "space between col bootstrap 4"

76

justify-content-between bootstrap 4

<div class="d-flex justify-content-start">...</div>
<div class="d-flex justify-content-end">...</div>
<div class="d-flex justify-content-center">...</div>
<div class="d-flex justify-content-between">...</div>
<div class="d-flex justify-content-around">...</div>
Posted by: Guest on February-23-2020
1

Remove space between columns in Bootstrap 4

<div class="row">
   <div class="col-md-2 padding-0">
       //stuff here for this column
   </div>
   <div class="col-md-10 padding-0">
       //stuff here for columns
   </div>
</div>
Posted by: Guest on November-17-2020
0

bootstrap distane between col

<div class="row">
  <div class="col-md-5"></div>
  <div class="col-md-5 offset-2"></div>
</div>
Posted by: Guest on July-11-2021

Code answers related to "space between col bootstrap 4"

Browse Popular Code Answers by Language