样式化HTML表单控件

时间:2010-07-12 23:52:07

标签: html css

如何设置“重置”,“按钮”和“文件”输入类型的样式,比方说图像?

谢谢!

3 个答案:

答案 0 :(得分:2)

不幸的是,如果不应用a hack就无法设置文件按钮的样式,但其他类型的样式可以这样设置:

<style type="text/css">
  input[type=button] {
    background-image: url(http://static3.grsites.com/archive/textures/blue/blue003.jpg);
    color: yellow;
    font-weight: bold;
  }

  input[type=reset] {
    background-image: url(http://static2.grsites.com/archive/textures/red/red003.jpg);
    color: yellow;
    font-weight: bold;
  }
</style>

答案 1 :(得分:0)

styled.css:

input[@type='button']
{
    background-image: url(button.png);
}

input[@type='reset']
{
    background-image: url(reset.png);
}

input[@type='file']
{
    background-image: url(file.png);
}

答案 2 :(得分:0)

HTML

<input type="button" name="buttonname" class="form-button" />

CSS

<style type="text/css">

.form-button
{
  background-image: url(image.gif);
}

</style>