输入类型='提交'样式并没有出现在IE 7中

时间:2014-05-14 03:53:02

标签: html css internet-explorer styling

我试图在html上设置我的按钮样式,但在IE 7中它不再改变,

这是我的css代码:

input[type=submit]{
background:url('../images/btn_login.png')repeat-x; 
color:white;
font-size:15px;
border-radius:5px;
}

这是我的HTML代码:

<input type='submit' value='Masuk'>

它会出现在其他浏览器上,例如firefox或chrome,但它就像在IE 7上没有变化一样 也许我需要为IE添加一些特定的CSS代码?

感谢

1 个答案:

答案 0 :(得分:0)

您可以将其作为一个类使用它     .btn {     背景:网址(&#39; ../图像/ btn_login.png&#39)重复-X;     白颜色;     字体大小:15像素;     边界半径:5像素;     }

然后将其称为html代码

<input type='submit' value='Masuk' class='btn'>