本文介绍了如何使< a href ="">链接看起来像一个按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个按钮图片:
I have this button image:
我想知道是否可以做一个简单的< a href =>一些单词< / a>
I was wondering whether it would be possible to make a simple <a href="">some words</a>
and style that link to appear as that button?
如果可以,我该怎么做?
If it is possible, how do I do that?
推荐答案
使用CSS:
.button {
display: block;
width: 115px;
height: 25px;
background: #4E9CAF;
padding: 10px;
text-align: center;
border-radius: 5px;
color: white;
font-weight: bold;
}
<a class="button">Add Problem</a>
这篇关于如何使< a href ="">链接看起来像一个按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!