Skip to content

Instantly share code, notes, and snippets.

@bryandh
Last active September 27, 2017 06:18
Show Gist options
  • Save bryandh/9115d7e56b765a9d9cec99f34d0774ba to your computer and use it in GitHub Desktop.
Save bryandh/9115d7e56b765a9d9cec99f34d0774ba to your computer and use it in GitHub Desktop.
Evenly distribute HTML list items horizontally using CSS
ul {
display: table;
width: 100%;
list-style: none;
}
ul li {
display: table-cell;
text-align: center;
}
ul li a {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment