Created
March 27, 2012 20:33
-
-
Save schadeck/2220061 to your computer and use it in GitHub Desktop.
Pure CSS Clickable Dropdown
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
/** | |
* Pure CSS Clickable Dropdown | |
*/ | |
.wrapper { | |
position: relative; | |
} | |
.wrapper:active .content { | |
display: block; | |
} | |
.button { | |
background: yellow; | |
height: 20px; | |
width: 150px; | |
cursor: pointer; | |
} | |
.content { | |
display: none; | |
} | |
.content:hover { | |
display: block; | |
} | |
.content { | |
position: absolute; | |
padding-top: 20px; | |
} | |
.content li { | |
background: red; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<div class="wrapper"> | |
<div class="content"> | |
<li>Lorem ipsum dolor sit amet.</li> | |
<li>Consectetur adipiscing elit.</li> | |
<li>Lorem ipsum dolor sit amet.</li> | |
<li>Consectetur adipiscing elit.</li> | |
</div> | |
<div class="button">Toggle Button</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-vertical","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment