Created
March 18, 2012 18:24
-
-
Save anonymous/2079331 to your computer and use it in GitHub Desktop.
Untitled
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
.wrapper{ | |
width:200px; | |
height:30px; | |
background:red; | |
position:relative; | |
} | |
.content{ | |
position:absolute; | |
z-index:1; | |
top:0; | |
padding-top:30px; | |
display:none; | |
} | |
.parent{ | |
position:absolute; | |
z-index:2; | |
} | |
.wrapper:active .content{ | |
display:block; | |
z-index:3; | |
} | |
.content:hover{ | |
display:block; | |
z-index:3; | |
} | |
.parent{ | |
width:200px; | |
height:30px; | |
} | |
.parent:hover{ | |
background:yellow; | |
} | |
.parent:active{ | |
background:green; | |
} |
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
<div class="wrapper"> | |
<div class="parent">Drop Down Parent 1</div> | |
<div class="content"> | |
<ul> | |
<li><a href="#">Lorem ipsum dolor</a></li> | |
<li><a href="#">Consectetur adipisicing</a></li> | |
<li><a href="#">Reprehenderit</a></li> | |
<li><a href="#">Commodo consequat</a></li> | |
</ul> | |
</div> | |
</div> |
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