CSS Image Replacement (IR)

HTML5 boilerplate does it this way, IE6/7 have issues with it...

by peterbenoit

HTML

<h1>Google testing</h1>

CSS

h1 {
    background: url('https://www.google.com/logos/classicplus.png') no-repeat center;
    height: 95px;
    width: 275px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    padding: 20px 0;
}