Skip to content

Instantly share code, notes, and snippets.

@Origame
Created March 11, 2016 10:43
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 Origame/0f66699cefef6774256e to your computer and use it in GitHub Desktop.
Save Origame/0f66699cefef6774256e to your computer and use it in GitHub Desktop.
Horizontally distribute all items
/* JUSTIFY TO CENTER */
#subMenu ul{
vertical-align: middle; /*Or anything else*/
width: 100%;
max-width: 960px; /*Allow items to be distributed only in this maximum space, remove if you need all 100% */
margin: 0 auto; /*Center*/
text-align: justify;
}
#subMenu ul:after{
content: "";
padding-right: 100%;
display: inline-block;
vertical-align: top;
}
#subMenu ul li{
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment