如何创建颜色按钮与HTML和CSS为我的网站

xt0899hw  于 2023-06-25  发布在  其他
关注(0)|答案(1)|浏览(120)

我的网站提供了业务相关的信息和技术,但我想为canva pro free帐户创建一个下载按钮,但我是新手,所以请指导我如何为我的网站创建HTML和CSS颜色按钮
我试图用HTML和CSS创建一个按钮,但我不知道问题在哪里,因为按钮不工作

ct3nt3jp

ct3nt3jp1#

.mybutton {
  display: inline-block;
  background-color: red;
  color: #fff;
  padding: .5rem 1rem;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.mybutton:hover {
  background-color: green;
  color: #fff;
}
<a href="#" class="mybutton">My Button</a>

相关问题