如何为 input type="button" 添加背景图片?

问题描述 投票:0回答:6

我一直在尝试通过css更改输入按钮的背景图片,但它不起作用。

search.html:

<body>
    <form name="myform" class="wrapper">
        <input type="text" name="q" onkeyup="showUser()" />
        <input type="button" name="button" value="Search" onclick="showUser()" class="button"/>
         <p>
             <div id="txtHint"></div>
         </p>
    </form>
</body>

search.css:

.button {
    background-image: url ('/image/btn.png') no-repeat;
    cursor:pointer;
}

有什么问题吗?

即使内联 css 似乎也不起作用。

html css button
6个回答
64
投票

你需要输入没有

image
这个词。

background: url('/image/btn.png') no-repeat;

测试了两种方式,这个有效。

例子:

<html>
    <head>
        <style type="text/css">
            .button{
                background: url(/image/btn.png) no-repeat;
                cursor:pointer;
                border: none;
            }
        </style>
    </head>
    <body>
        <input type="button" name="button" value="Search" onclick="showUser()" class="button"/>
        <input type="image" name="button" value="Search" onclick="showUser()" class="button"/>
        <input type="submit" name="button" value="Search" onclick="showUser()" class="button"/>
    </body>
</html>

16
投票

只是补充一下答案,我认为这种情况下的具体原因,除了错位

no-repeat
之外,是
url
(
之间的空间:

background-image: url ('/image/btn.png') no-repeat; /* Won't work */
background-image: url('/image/btn.png'); /* Should work */

10
投票

background-image
将 url 作为值。使用任一

background-image: url ('/image/btn.png');

background: url ('/image/btn.png') no-repeat;

这是

的简写
background-image: url ('/image/btn.png');
background-repeat: no-repeat;

另外,您可能想看看

button
HTML 元素 花哨的提交按钮。


4
投票

如果这是提交按钮,请使用

<input type="image" src="..." ... />

http://www.htmlcodetutorial.com/forms/_INPUT_TYPE_IMAGE.html

如果你想用CSS指定图像,你必须使用

type="submit"
.


0
投票
.button{
    background-image:url('/image/btn.png');
    background-repeat:no-repeat;
}

0
投票
.button-class {
  background: url(images/tom1.png) no-repeat; /* local source or link */
  cursor: pointer; /* if you want different cursor */
  border: none;
}
or
#button-id {
  background: url(images/img.png) no-repeat;
  cursor: pointer;
  border: none;
}
© www.soinside.com 2019 - 2024. All rights reserved.