Turn Off Alt Tags On Links With CSS?

后端 未结 6 1953
青春惊慌失措
青春惊慌失措 2021-01-17 22:19

This website that I\'m working on has annoying alt tags popping up when you hover over links in the sidebar. I didn\'t put these alt tags in. But, I can control the CSS... I

6条回答
  •  北荒
    北荒 (楼主)
    2021-01-17 22:50

    You can use CSS to hide images with any alt text, for example alt = "LinkedIn"

    [alt="LinkedIn"] { display: none !important; }

    You can also hide the image with title for example title = "Company logo"

    [title="Company logo"] { display: none !important; }

提交回复
热议问题