更改按钮上的颜色文本

时间:2019-12-20 09:41:27

标签: html css wordpress

我正在wordpress上使用一个主题,该主题的按钮上具有黄色,但是悬停时文本为白色,而没有悬停,因此我希望文本都为黑色。 我尝试使用此代码,但仅在悬停时才将颜色设为黑色,如何以两种方式将其设为黑色?

input[type = "submit"]:hover {
color: black;

4 个答案:

答案 0 :(得分:0)

尝试此代码

input[type="submit"], 
input[type="submit"]:hover {
  color: black;
}

答案 1 :(得分:0)

CustomMailAddress
input[type=submit], input[type=submit]:hover {
  color:black  
}

答案 2 :(得分:0)

<picture>

    <source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
    <img src="mdn-logo-narrow.png" alt="MDN">

    {# When lazyloading, include noscript to still render image when JS is off #}
    {% if lazyload %}
      <noscript>
        <img src="mdn-logo-narrow.png" alt="MDN">
      </noscript>

</picture>

尝试这种方式 谢谢

答案 3 :(得分:0)

尝试一下。希望对你有帮助

input[type=submit]:hover {
	background:#ccc !important; 
	color: black !important;
}
<form action="#">
	<input type="submit" value="submit"/>
</form>