Alt or title attribute for i tag

前端 未结 5 719
清酒与你
清酒与你 2021-01-30 19:18

I use font-awesome and display their fonts like that:


This will display a nice little lock symbol. For

5条回答
  •  遇见更好的自我
    2021-01-30 20:12

    You should use or something along those lines instead. You can use the title="" attribute to give some text on hover, if that's what you're looking for. As far as providing accessability to screen readers, or SEO value, you could add the following CSS:

    .icon-lock{
        text-indent:-99999px;
    }
    

    And then write your markup like so:

    What I want the screen reader to say
    

提交回复
热议问题