Created
March 20, 2011 21:18
-
-
Save danro/878690 to your computer and use it in GitHub Desktop.
CSS replace a block of text with an image
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
h1.someClass { | |
margin: 0; padding: 0; | |
width: 175px; height: 37px; | |
background: url('images/someClass.png') no-repeat; | |
} | |
h1.someClass span { | |
display: block; | |
width: 0; | |
height: 0; | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment