参见上面的两张图片,我的博客中的链接颜色设置为橙色,如您在第一张图片中看到的,而在第二张图片中,按钮的颜色也变为橙色,现在的问题是我想在按钮中添加链接(在BUY上现在)向其添加链接后,由于链接的悬停颜色,文本颜色变为橙色。因此,我想更改按钮文本的悬停颜色而不更改普通文本的悬停颜色。请告诉我该怎么办
button {background: blue; color: yellow;}
button:hover {background: orange; color: green;}
<button>Click Me</button>
<a href="http://www.google.com">Google</a>
<!-- begin snippet: js hide: false console: true babel: false -->
.button2 a:link, .button2 a:visited {
background-color: #FF5733;
color: white;
text-decoration: none;
}
.button2 a:hover, .button2 a:active {
background-color: #FF5733;
color:#000000;
}
<button class="button button2">Buy Now</button>
<a href="http://www.google.com">Google</a>
<!-- end snippet-->