Skip to content

Instantly share code, notes, and snippets.

@jonlow
Last active August 29, 2015 14:03
Show Gist options
  • Save jonlow/40f46769916e773746ff to your computer and use it in GitHub Desktop.
Save jonlow/40f46769916e773746ff to your computer and use it in GitHub Desktop.
Overlay an image button (with text) on text, so that when you turn images off it is still accessible.
a.backButton { /* Obviously change the class to whatever you want*/
display: block;
width: 50px; /* Width of the image */
position: relative;
}
a.backButton img {
position: absolute;
top: 0;
left: 0;
}
/*** HTML Markup
<a class="backButton href="#">
Back
<img src="image.jpg" alt="" />
</a>
***/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment