Skip to content

Instantly share code, notes, and snippets.

@MoOx
Created February 27, 2012 17:21
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 MoOx/1925613 to your computer and use it in GitHub Desktop.
Save MoOx/1925613 to your computer and use it in GitHub Desktop.
Untitled
ul
{
display: none
}
nav:hover ul
{
position: relative;
display: block;
outline: 1px solid blue;
}
nav:hover::before
{
outline: 1px solid red;
position: absolute;
top: 0;
left: 0;
width: 200%;
left: 200%;
margin-left: -50%;
margin-top: -50%;
}
<nav>
Dropdown
<ul>
<li>item</li>
</ul>
</nav>
{"view":"split","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment