您如何更改按钮的颜色?

时间:2019-03-27 18:18:46

标签: html

Hellow,我是html的重要人物,我有一个问题。我想在我的网站上更改按钮颜色,我不知道该怎么做。

我尝试了Internet上的许多资源,但是没有用。

1 个答案:

答案 0 :(得分:1)

我强烈建议与@Shakepear所说的一样,w3schools是一个很好的起点,在他们的CSS tutorial中,您可以找到所有内容。 话虽这么说,您要做的是设置background-color或设置字体color,可以按照以下步骤进行操作:

.rw {
  background-color: red;
  color: white;
}

.bo {
  background-color: blue;
  color: orange;
}
<p><button class="rw">red and white</button></p>
<p><button class="bo">blue and orange</button></p>

顺便说一句,如果您下次向我们展示一些代码,这样我们就知道您已经尝试过了