Skip to content

Instantly share code, notes, and snippets.

@ratracegrad
Last active September 4, 2017 20:15
Show Gist options
  • Save ratracegrad/6ca34c2ee1a56feaa2380a5d18df1220 to your computer and use it in GitHub Desktop.
Save ratracegrad/6ca34c2ee1a56feaa2380a5d18df1220 to your computer and use it in GitHub Desktop.
Navigation CSS code
.flexContainer {
display: flex;
}
.flexItem {
flex: 1;
}
.flexStart {
justify-content: flex-start;
}
.flexEnd {
justify-content: flex-end;
}
.blueBackground {
background: lightskyblue;
}
.nav {
list-style: none;
}
.nav a {
text-decoration: none;
display: block;
padding: 0 1em;
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment