gpt4 book ai didi

html - 删除输入类型图像按钮的边框?

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

这是我目前的代码:

HTML:

<!DOCTYPE html>
...
<form>
<input type="image" value=" " class="btnimage" />
</form>
...

CSS:

.btnimage {
width: 80px;
height: 25px;
background:url('C:/Users/John/Desktop/Misc Things for the CoD Ghosts Site/SubmitButton.png');
}
.btnimage:hover {
background-position: 0 -25px;
background:url('C:/Users/John/Desktop/Misc Things for the CoD Ghosts Site/SubmitButtononHover.png');
}

上面的代码有效,但是按钮周围有一个边框,我想去掉它。到目前为止,我已经尝试将 background-border:0; 添加到两个类中,但没有成功。

最佳答案

尝试

input {
/* sets border width to 0 and border style to none */
border:0 none;
}

input {
border: 0px solid black;
}

关于html - 删除输入类型图像按钮的边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21058017/

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