我有一个锚链接,它有一个图像和两个文本范围,一个标题和一个不同颜色的标语,我希望它们在悬停链接时以不同方式改变。
<style>
span.title {color: #666;}
span.tagline {color: #aaa;}
</style>
<a class="button" href="http://www.link.com" target="_blank">
<div style="display:block">
<img src="images/button.png">
<span class="title">TITLE</span><br>
<span class="tagline">tagline</span>
</div>
</a>
我想知道是否可以使用类似的东西:
<style>
a.button:hover span.title {color: #000;}
a.button:hover span.tagline {color: #2ae;}
</style>