gpt4 book ai didi

html - 用图像替换按钮

转载 作者:搜寻专家 更新时间:2023-10-31 22:03:25 24 4
gpt4 key购买 nike

我已经成功地用图像替换了按钮。但看起来图像放在按钮的顶部。我不想把我的 CSS 放在里面,因为有其他样式重叠它,我不想有任何重定向页面。

<button type="reset"><img src="images/cancel.png" width="15"></button>

最佳答案

在 CSS 中做到这一点!

button {
background-image: url(images/cancel.png);
background-repeat: no-repeat;
background-position: 50% 50%;
/* put the height and width of your image here */
height: 50px;
width: 200px;
border: none;
}

button span {
display: none;
}

那么你的按钮是:

<button type="reset" title="In some browsers, this appears as a tooltip"> 
<span>Cancel</span></button>

您还可以添加说明符来覆盖默认按钮行为 - 例如 -webkit-appearance: none; 但我相信这足以满足您的需求。

关于html - 用图像替换按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11380776/

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