Skip to content

Instantly share code, notes, and snippets.

@jmc2082
Created May 13, 2016 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmc2082/7aab851e770d84c172e7dc395965159a to your computer and use it in GitHub Desktop.
Save jmc2082/7aab851e770d84c172e7dc395965159a to your computer and use it in GitHub Desktop.
Center UL List and "LI" items by displaying them like table cells
ul {
display: table;
table-layout: fixed;
margin: 0;
padding: 0;
li {
display: table-cell;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment