Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Last active December 21, 2015 18:08
Show Gist options
  • Save nickberens360/6344935 to your computer and use it in GitHub Desktop.
Save nickberens360/6344935 to your computer and use it in GitHub Desktop.
Center Bootstrap nav list items regardless of li amounts
.nav {
list-style: none;
padding: 0;
margin: 0;
display: table;
width: 100%;
}
.nav > li {
display: table-cell;
text-align:center;
}
@media (min-width: 768px){
.navbar-nav > li {
float: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment