是否可以使超链接看起来像带有文本的按钮?
我们可以用代码制作超链接按钮:
<a href="..."> <img src="button.png" width="100" height="50" alt="Some text"></img> </a>
但我还需要按钮中心的文本。
谢谢。
我建议,在不确切知道您想要什么的情况下,并假设以下标记:
<a href="#"><img src="path/to/image.png" /><span>Some text</span></a>
a {
position: relative;
display: inline-block;
}
a span {
position: absolute;
top: 50%;
left: 50%;
margin-top: -1em;
margin-left: -50%;
width: 100%;
height: 2em;
color: #f90;
background-color: rgba(0,0,0,0.5);
}
可以通过将按钮设置为背景:
<a href="..." style="text-align:center; background: url('button.png'); width: 100px; height: 50px;">Your text</a>
但我会尽量避免带有背景图像的按钮(除非它们是奇怪的形状)。相反,我会尝试使用 CSS3。
您可以使用一些 UI 框架,例如 bootstrap 或 Flat ui 。
<a href="#" class="btn btn-primary"> Click Me</a>