gpt4 book ai didi

html - 图像按钮导航到另一个站点 html/css

转载 作者:太空宇宙 更新时间:2023-11-04 01:02:02 25 4
gpt4 key购买 nike

这是我的代码:

HTML:

<a href="index2.html">
<input type="image" class="button" value="">
</a>

CSS:

.button {
background:url(example.jpg) no-repeat;
cursor:-webkit-grab;
border: none;
}

应该发生的是它显示图像,当我单击时,它将导航到另一个站点 index2.html。它与另一个图像一起工作,但它有一个烦人的边框,但在我更改图像后它不再工作了。

最佳答案

您不需要输入类型按钮,只需使用 img...

html:

<a href="index2.html">
<img src="example.jpg" />
</a>

CSS:

a img {
border: none;
cursor: grab;
}

关于html - 图像按钮导航到另一个站点 html/css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53122125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com