Bootstrap 3, 4 and 5 .container-fluid with grid adding unwanted padding

You should also add a “row” to each container which will “fix” this issue!

<div class="container-fluid">
   <div class="row">
        Some text
   </div>
</div>

See http://jsfiddle.net/3px20h6t/

Leave a Comment