Created
March 11, 2016 10:43
-
-
Save Origame/0f66699cefef6774256e to your computer and use it in GitHub Desktop.
Horizontally distribute all items
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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