42

我试图更改提交按钮类型中文本的颜色,但我不知道为什么我无法更改它。

.button {
  width: 105px;
  height: 20px;
  background-image: url('tiny.gif');
  line-height: 20px;
  padding-bottom: 2px;
  vertical-align: middle;
  font-family: "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  <!--font-weight: bold;
  -->text-transform: none;
  border: 1px solid transparent;
}

.button:hover {
  background-image: url('tiny_.gif');
}
<input type="submit" value="Fetch" class="button" />

当我尝试更改提交按钮的颜色时遇到问题。

4

6 回答 6

73

.button
{
    font-size: 13px;
    color:green;
}
<input type="submit" value="Fetch" class="button"/>

于 2012-09-18T06:07:03.457 回答
23

你试试这个:

<input type="submit" style="font-face: 'Comic Sans MS'; font-size: larger; color: teal; background-color: #FFFFC0; border: 3pt ridge lightgrey" value=" Send Me! ">
于 2012-09-18T06:18:14.583 回答
7
<button id="fwdbtn" style="color:red">Submit</button> 
于 2014-12-04T09:30:02.317 回答
4

使用这个 CSS:

color: red;

就这样。

于 2012-09-18T05:57:19.610 回答
-1
<input type = "button" style ="background-color:green"/>
于 2016-05-15T16:04:34.637 回答
-1
.btn{
    font-size: 20px;
    color:black;
}
于 2020-12-18T09:30:25.773 回答