I\'m working on a basic nav bar project, and I\'ve trying to get this list to align center. I\'ve tried using align-content and text-align, but my bar
align-content
text-align
You can simply give the .banner element margin-left: auto; margin-right: auto;
.banner { margin-left: auto; margin-right: auto; }