Skip to content

Instantly share code, notes, and snippets.

@dottedsquirrel
Created April 16, 2020 10:02
Show Gist options
  • Save dottedsquirrel/3ed4858deac02b452ab5f3487f558341 to your computer and use it in GitHub Desktop.
Save dottedsquirrel/3ed4858deac02b452ab5f3487f558341 to your computer and use it in GitHub Desktop.
.nav ul {
background:#0d47a1;
padding:0;
}
.nav li {
width:100px;
position: relative;
display:inline-block;
}
.nav a{
text-decoration:none;
display:block;
color:white;
padding:15px;
transition:0.2s all linear;
}
.nav a:hover{
background:#e3f2fd;
color:black;
transition:0.2s all linear;
}
.nav li > ul {
background:#1565c0;
display:none;
position:absolute;
}
.nav li > ul li{ display:block; }
.nav li:hover > ul{
display:block;
}
.nav ul ul ul {
background:green;
position:absolute;
left:100%;
top:0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment