我怎么了HTML + CSS按钮

时间:2019-01-12 11:09:55

标签: html css button

这是我的HTML代码:

<button type="button">Team</button>

这是我的CSS代码:

    .button {
  background-color: #4CAF50;
  position: absolute;
  top: 100px;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

但是在我的网站上只是一个简单的HTML按钮。我不明白为什么。我希望获得帮助...

1 个答案:

答案 0 :(得分:1)

您的HTML代码应为:

<button type="button" class="button">Team</button>

OR CSS规则应应用于任何按钮,例如:

button {
  background-color: #4CAF50;
  position: absolute;
  top: 100px;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}