我有图像按钮,可以通过更改CSS中图像的内容来改变悬停时的外观。不确定这是否是问题的一部分但由于某些原因,当我点击我的图像链接时没有任何反应。
这是我正在使用的代码:
<div class="hub-background">
<div class="hub-container">
<article class="btn-twitch">
<a href="twitch.tv/destifly">;
<img src=" ***** "> </a>
</article>
</div>
</div>
答案 0 :(得分:2)
您需要将文章放在锚标记
中<div class="hub-background">
<div class="hub-container">
<a href="...">
<article class="btn-twitch">
<img src="...">
</article>
</a>
</div>
</div>