I am just learning how to do a basic web page. So this is the main code
<navbar class="navbar navbar-light pip-footer">
<div class="row">
<div class="col-3">
HP 90/90
</div>
<div class="col-6">
LEVEL 1
<div class="level-progress"></div>
</div>
<div class="col-3">
AP 50/50
</div>
</div>
</navbar>
then I want to apply these measures so that the words are spaced, but as you can see in the image they don't move
.pip-footer{ position: fixed;
bottom: 0;
width: calc(100% - 20px);
margin: 10px;}
According to bootstrap website here : https://getbootstrap.com/docs/4.0/layout/grid/ you can change the classes to be like
another solution which is I don't know if it still works in bootstrap4 is that you can wrap all you divs that contain
colclass inside adivthe havecol-12class so the code will be