Skip to content

Instantly share code, notes, and snippets.

@gr2m
Created August 13, 2010 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gr2m/522843 to your computer and use it in GitHub Desktop.
Save gr2m/522843 to your computer and use it in GitHub Desktop.
/*
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