Skip to content

Instantly share code, notes, and snippets.

  • Save b4z81/2027992 to your computer and use it in GitHub Desktop.
Save b4z81/2027992 to your computer and use it in GitHub Desktop.
Css: Nir image replacement
.nir {
height:100px; /* height of replacement image */
width:400px; /* width of replacement image */
padding:0;
margin:0;
overflow:hidden;
}
.nir:before {
content:url(image.gif);
display:inline-block;
font-size:0;
line-height:0;
}
.nir {
height:100px; /* height of replacement image */
width:400px; /* width of replacement image */
padding:0;
margin:0;
overflow:hidden;
}
.nir:before {
content:url(image.gif);
display:inline-block;
font-size:0;
line-height:0;
}
<!--[if lte IE 7]>
<style type="text/css">
.nir {
height:100px;
padding:0;
margin:0;
overflow:hidden;
text-indent:-9000px;
background:url(image.gif) no-repeat 0 0;
}
</style>
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment