Created
March 30, 2016 16:46
-
-
Save nickberens360/5d14ce33099d07fa88bc4693bc7d89da to your computer and use it in GitHub Desktop.
CSS: distribute list items evenly horizontally. li across
This file contains hidden or 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
.navMain{ | |
list-style:none; | |
padding:0; | |
display: table; | |
width: 100%; | |
>li{ | |
border:1px solid red; | |
display: table-cell; | |
text-align: center; | |
} | |
a{ | |
display:block; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment