で画像を置き換えるためにテキストを殺すのが本当に好きですfont: 0/0 a
が、私が知っているように、それはどこでもうまくいくわけではありません。
それで、私たちはまだ必要ですか
text-indent: -9999px;
overflow: hidden;
このため?
リスター氏がコメントしたように、画像の置換を行うには多くの異なる方法があります。それらすべてには良い面と悪い面があります。唯一の本当の欠点は、疑似要素(IE8 +)のサポートが必要なことです。
http://nicolasgallagher.com/css-image-replacement-with-pseudo-elements/
.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;
}
更新しました
画像を背景に置き換え、パディングを使用して実際の画像を遠ざけることができます。これは多くのソリューションの 1 つにすぎません。
CSS
div
{
width: 550px;
height: 190px;
overflow: hidden;
}
.img2
{
background: url('http://www.google.com/logos/2013/ghana_independence_day_2013-1202005-hp.jpg') no-repeat left top;
padding-left: 550px;
}
HTML
<img class="img1" src="http://www.google.dk/images/srpr/logo4w.png" width="550" height="190" />
<div>
<img class="img2" src="http://www.google.dk/images/srpr/logo4w.png" width="550" height="190" />
</div>