My question is how you can center the pills?
I\'ve tried to add center block around and also to change the float:left to float:center but n
float:left
float:center
Or flexbox approach:
.nav-pills { display: flex; justify-content: center; }