-
-
Save l0gicpath/5929711 to your computer and use it in GitHub Desktop.
This file contains 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
/* | |
MAKE the whole block actionable with CSS only. | |
<div id="block" title="read more about ..."> | |
<h3><a href="...">Some title here</a></h3> | |
<p>bla bla bla .... bla!</p> | |
</div> | |
*/ | |
#block { | |
position: relative; | |
overflow: hidden; | |
} | |
#block a:before { | |
content: ''; | |
display: block; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
} | |
#block:hover { | |
/* some nice hover state styling here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment