I am building an app with the Bootstrap 4 beta. This app is really basic at the moment and has a single inline list. I\'m trying to center this list horizontally in the middle o
Use display:flex for ul because justify-content-center works with flexbox
display:flex
justify-content-center
ul { display:flex; }
Item 1 Item 2 Item 3 Item 4 Item 5