我只是想知道为什么在 IE 中按钮是灰色的,然后当你将鼠标悬停在按钮上时变为蓝色,它应该是蓝色的,然后当悬停在它上面时变为深蓝色。
我已经让它在其他浏览器中工作,但我无法弄清楚 IE 的代码。
提前致谢。
这是CSS:
#mc_embed_signup .button {
background-image: linear-gradient(center top , rgb(95, 176, 244), rgb(70, 130, 180));
background-image: -o-linear-gradient(center top , rgb(95, 176, 244), rgb(70, 130, 180));
background-image: -moz-linear-gradient(center top , rgb(95, 176, 244), rgb(70, 130, 180));
background-image: -webkit-linear-gradient(center top , rgb(95, 176, 244), rgb(70, 130, 180));
background-image: -ms-linear-gradient(center top , rgb(95, 176, 244), rgb(70, 130, 180));
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(1, rgb(95, 176, 244)),
color-stop(1, rgb(70, 130, 180))
);}
这是按钮的 HTML:
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
它实际上位于http://www.housebuyfast.co.uk的页脚中。这是“立即加入我们的邮件列表”下的订阅按钮。