Created
February 27, 2012 17:23
-
-
Save MoOx/1925629 to your computer and use it in GitHub Desktop.
dropdown with an after for maintaining the hover when you mouse around
This file contains hidden or 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
/* dropdown with an after for maintaining the hover when you mouse around */ | |
ul | |
{ | |
display: none | |
} | |
nav:hover ul | |
{ | |
position: relative; | |
display: block; | |
outline: 1px solid blue; | |
} | |
nav:hover ul::before | |
{ | |
outline: 1px solid red; | |
display: block; | |
position: absolute; | |
content:""; | |
top: 0; | |
left: 0; | |
width: 300%; | |
height: 300%; | |
margin-left: -100%; | |
margin-top: -100%; | |
} |
This file contains hidden or 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 hidden or 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