简体   繁体   中英

Hiding Text in ie7

So I have this text generated by a javascript plugin.

<a class="className">Text</a> 

a.className {
background: url(images/a-image.png) no-repeat;
}

But the "Text" shows on top of the image... Now... with any respectable web browser, I can use color: rgba(0,0,0,0); to solve the problem, but IE7 doesn't obey standards of any sort.

Any ideas?

color:transparent;

or

text-indent:-9999px;

or

font-size:0px;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM