Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

say I have the following markup:

<li><a href="somehwere">Link text</a></li>

If i have a background image on the a tag how would I hide the link text using just css? font-size:0 seems to work fine on the a tag apart from in ie7 little blobs show.

Thanks

  • Thanks for help so far iv used line-height: 0; and font-size:0; and text-indent: -999px; but it still shows up some blobs in safari, any ideas?
share|improve this question

3 Answers

up vote 34 down vote accepted

Try

 a{
    line-height: 0; 
    font-size: 0;
    color: transparent; 
 }


The color: transparent; covers an issue with Webkit browsers still displaying 1px of the text.

share|improve this answer
yep that worked thanks a lot :-) – geoffs3310 Mar 14 '11 at 15:32
1  
I have found this not to work in Chrome 15.0.874.120. Also have to add color:transparent; – brokenindexfinger Nov 17 '11 at 0:12
@brokenindexfinger weird... but adding color:transparent works then? If so feel free to edit my answer and add that, or I can. – Loktar Nov 17 '11 at 0:14
a { text-indent:-9999px; }

Tends to work well from my exprience.

share|improve this answer
Ah nice didn't even think of that, I use that all the time for headers with images. – Loktar Mar 14 '11 at 15:35
not good for SEO though.. – blachawk Apr 18 at 2:02

Wrap the text in a span and set visibility:hidden; Visibility hidden will hide the element but it will still take up the same space on the page (conversely display: none removes it from the page as well).

share|improve this answer
Thank you scrappedcola, this a great solution! – blachawk Apr 18 at 2:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.