Created
February 27, 2012 17:21
-
-
Save MoOx/1925613 to your computer and use it in GitHub Desktop.
Untitled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav> | |
Dropdown | |
<ul> | |
<li>item</li> | |
</ul> | |
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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