Skip to content

Instantly share code, notes, and snippets.

@theeltahir
Created May 18, 2015 14:50
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 theeltahir/bfd1abadb9fe599765dd to your computer and use it in GitHub Desktop.
Save theeltahir/bfd1abadb9fe599765dd to your computer and use it in GitHub Desktop.
a precess production
nav{
border: 1px solid #ddd;
ul{
margin: 0;
li{
list-style: none;
a{
color: red;
}//a
}//li
}//ul
}//nav
//try not to nest more than 3 levels deep
nav {
border: 1px solid #ddd;
}
nav ul {
margin: 0;
}
nav ul li {
list-style: none;
}
nav ul li a {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment