gpt4 book ai didi

html - 使用 CSS 添加图像以提交按钮

转载 作者:太空狗 更新时间:2023-10-29 13:21:08 24 4
gpt4 key购买 nike

我正在尝试使用 CSS 制作包含图像的 sumbit 按钮。这是代码:

HTML

<input type="submit" id="search" name="submit" alt="search" >

CSS

input#search{
background:url(../search-icon.png);
background-repeat: no-repeat;
width:40px;
height:40px;
}

这将返回此提交按钮,但我不希望出现“提交”一词或灰色方框。

http://cs12jcw.icsnewmedia.net/screenshot.png

如果有人能提出可能是什么问题,我们将不胜感激。

最佳答案

灰色框是由添加到提交按钮的默认边框引起的。而提交文本是按钮的默认值。

HTML:

<input type="submit" id="search" name="submit" alt="search" value="">

CSS:

input#search    {
background:url(../search-icon.png);
background-repeat: no-repeat;
width:40px;
height:40px;
border: 0;
}

关于html - 使用 CSS 添加图像以提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20904817/

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