Skip to content

Instantly share code, notes, and snippets.

@jamalkhan2k6
Last active August 29, 2015 14:09
Show Gist options
  • Save jamalkhan2k6/6a5ff5fd6c06a04ba799 to your computer and use it in GitHub Desktop.
Save jamalkhan2k6/6a5ff5fd6c06a04ba799 to your computer and use it in GitHub Desktop.
Make the li's fit inside ul (great for sliders) through CSS (no js)
/*lis will always be inline*/
ul {
width: 100%;
display: table;
table-layout: fixed; /* optional */
}
ul li {
display: table-cell;
width: auto; /* can be a number too */
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment