Created
September 21, 2012 23:30
-
-
Save jakerocheleau/3764503 to your computer and use it in GitHub Desktop.
Inner-element Hover
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
/** | |
* Inner-element Hover | |
*/ | |
body { padding: 0px 20px; } | |
.container { position: relative; } | |
.mini { position: absolute; top: 10px; left: 15px; | |
display: none; | |
padding: 4px 5px; | |
background: rgba(255,255,255,0.8); | |
color: #666; font-weight: bold; | |
} | |
.container a:hover .mini { display: block; } |
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="container"> | |
<a href="#"> | |
<span class="mini">1988</span> | |
<img src="http://i.imgur.com/2HvTf.jpg" alt="pup named scooby doo"> | |
</a></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":"separate","fontsize":"90","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment