小编典典

如何使按钮看起来像一个链接?

css

我需要使按钮看起来像使用CSS的链接。所做的更改已经完成,但是当我单击它时,它显示的效果就像按按钮一样。任何想法如何删除它,以便即使单击该按钮也可以用作链接?


阅读 252

收藏
2020-05-16

共1个答案

小编典典

button {

  background: none!important;

  border: none;

  padding: 0!important;

  /*optional*/

  font-family: arial, sans-serif;

  /*input has OS specific font-family*/

  color: #069;

  text-decoration: underline;

  cursor: pointer;

}


<button> your button that looks like a link</button>
2020-05-16