我有GIF动画,当它悬停在它上面时,会创建一个下划线链接(绿松石色)。我尝试过添加样式" text-decoration:none;"在标签中,但没有任何反应。请帮忙。这是我的HTML代码:
<aside id="ad1">
<a style="text-decoration: none;" href="http://www.cnn.com/" target="_blank">
<img border="0"; src="images/cnnnews.gif" alt="cnnnewsgif"></a>
</aside>
编辑(2014年6月17日):
以下是问题的快照:
答案 0 :(得分:1)
而不是<a style="text-decoration: none;"
添加一个类,例如
<aside id="ad1">
<a class="imglink" href="http://www.cnn.com/" target="_blank">
<img border="0" src="images/cnnnews.gif" alt="cnnnewsgif" /></a>
</aside>
并在标题
中添加以下css<style type="text/css">
.imglink, .imglink:hover{
text-decoration: none;
}
</style>
答案 1 :(得分:0)
我似乎无法重现它,但您的问题可能是某种语法错误,或者您为链接设置text-decoration: none
,而不是悬停链接。只需使用:hover
选择器,然后在head
。
<head>
<!--other head stuff-->
<style>
img, img:hover{
text-decoration: none;
}
</style>
</head>
<body>
<aside id="ad1">
<a style="text-decoration: none;" href="http://www.cnn.com/" target="_blank">
<img border="0" src="images/cnnnews.gif" alt="cnnnewsgif"/></a>
</aside>
</body>
(虽然它不会给你很多)