gpt4 book ai didi

html - 图片按钮在 HTML5/CSS3 中不可点击

转载 作者:行者123 更新时间:2023-11-28 00:07:29 24 4
gpt4 key购买 nike

我在让图像在我的网站上可点击时遇到问题。我所有带有链接的标准按钮都可以正常工作。下面我将粘贴与相关按钮相关的 CSS 和 HTML5 代码。出于显而易见的原因,我省略了实际链接。

.button3 {
background-image: url("donate.png");
background-size: cover;
background-position: center;
border-radius: 25px;
cursor: pointer;
width: 200px;
height: 60px;
margin-left: 500px;
margin-right: 5px;
margin-top: 40px;
}
<div class="button3">
<a href="link" class="button3"></a>
</div>

最佳答案

您可以改为将 div 按钮包裹在 anchor 标记中,这样您的 anchor 标记将拉伸(stretch)为其内容的宽度和高度,从而使您可以点击整个 div。

请看下面的例子:

.button3 {
background-image: url("https://cdn.sstatic.net/Sites/stackoverflow/company/img/logos/so/so-icon.svg?v=f13ebeedfa9e");
background-size: cover;
background-position: center;
border-radius: 25px;
cursor: pointer;
width: 200px;
height: 150px;
/*margin-left:500px;
margin-right:5px;*/
margin-top: 40px;
}
<a href="link">
<div class="button3">
</div>
</a>

关于html - 图片按钮在 HTML5/CSS3 中不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55614984/

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