如何在此按钮标签中插入href链接

时间:2019-04-03 15:12:56

标签: php css

嘿,我想在此按钮的href链接中输入如何输入

  

\"/led=ON\"\"

这是带有动画的按钮代码

<button type="button" class="btn btn-primary btn-cons btn-animated from-top fa fa-arrow-up"><span>Open</span></button>

1 个答案:

答案 0 :(得分:0)

为您提供我上面的评论的一个非常简单的示例(将链接格式化为按钮),这里是一个不错的起点。当然可以随意格式化它。

HTML超链接:

<a href="#" class="linkLikeButton">Example</a>

CSS类:

.linkLikeButton {
  display: inline-block;
  border: 2px solid black;
  padding: 10px;
  background-color: steelblue;
  color: white;
  text-decoration: none;
}

  .linkLikeButton:hover {
    background-color: lightblue;
  }