リンク内のテキストを非表示にして、画像のみを表示し、画像をクリック可能にしようとしています。
以下のコードを使用していますが、テキストが非表示になっているようです。
<span class="cnn-b">
<a href="http://www.cnn.com" alt="cnn" title="cnn">
<span class="cnn-text">cnn</span>
</a></span>
css
.cnn-b{
width: 200px; height: 75px;
background: url("cnn.png") no-repeat 0 0;
text-indent: -9999px;
}
.cnn-text {
text-indent: -9999px;
}