Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Created March 30, 2016 16:46
Show Gist options
  • Save nickberens360/5d14ce33099d07fa88bc4693bc7d89da to your computer and use it in GitHub Desktop.
Save nickberens360/5d14ce33099d07fa88bc4693bc7d89da to your computer and use it in GitHub Desktop.
CSS: distribute list items evenly horizontally. li across
.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