Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Casey Gollan

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Replace Text with Images using CSS

This will replace your H1 tag with a 100px by 100px logo.
Users with CSS disabled will see whatever is in
   1  <h1>Company Inc.</h1>

users with CSS will see the Company Inc. logo
to use this, add this to your stylesheet:
   1  
   2  h1 {
   3  	text-indent: -100em;
   4  	overflow: hidden;
   5  	background: url(logo.png) no-repeat;
   6  	height: 100px;
   7  	width: 100px;
   8  	}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS