Created
July 18, 2012 14:10
-
-
Save richardegil/3136416 to your computer and use it in GitHub Desktop.
Accordion for Tamara
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 id="accordion"> | |
<a class="toggler"> | |
Learn More | |
</a><!--end .toggler--> | |
<div class="element"> | |
<p>This is some text.</p> | |
</div><!--end .element--> | |
</div><!--end #accordion--> | |
// Update to css | |
.toggler:hover, .toggler.open { | |
text-decoration:underline; | |
cursor:pointer; | |
color:#095F64; | |
background: url(../_images/arrow-down.png) no-repeat right; | |
padding-right: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment