Check out this straightforward Bootstrap footer grid example here:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- foooter -->
<footer style="background-color: #0198d1;">
<div class="row">
<div class="col-4" style="background-color: #0198d1;">
<span>test</span>
</div>
<div class="col-4 text-center" style="background-color: #0198d1;">
<span>test</span>
</div>
<div class="col-4 text-right" style="background-color: #0198d1;">
<span>test</span>
</div>
</div>
</footer>
<!-- END foooter -->
I'm puzzled by why it triggers the horizontal scrollbar in the browser and seeking solutions to remove it.