CSS Hide Text But Show Image?

前端 未结 4 986
北荒
北荒 2021-02-02 10:04

I need to change something without touching HTML codes.

So I have this code in my HTML

 
    
  • Sha
4条回答
  •  天涯浪人
    2021-02-02 10:35

    use text-indent with a little magic in it :)

    HTML:

               
    

    CSS:

    a.twitter {
        background-image:url('../images/tt.png');
        display:block;
        height:58px;
        text-indent:-9999px;
        width:200px;
    }
    

    So you see the text is indented but still the image is still clickable because i've put a class in the twitter link ;)

提交回复
热议问题