Remove Space Between Columns In Bootstrap 4 Code Example


Example 1: bootstrap col no gaps


<div class="row no-gutters">
</div>

Example 2: 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>

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy