Turn Off Alt Tags On Links With CSS?

后端 未结 6 1943
青春惊慌失措
青春惊慌失措 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:49

    From what I can see of the site, you’re getting a tooltip when you hover over the side bar links because they each have a title attribute.

    I don’t think there’s anything in CSS to prevent these showing up. Showing these in a tooltip on hover is a decision the browser makes, separately to the rendering of the HTML.

    The best you can do is use JavaScript to remove the title attribute.

提交回复
热议问题