我想为输入类型设置边框,但这在IE7中无法正常工作
<input type="submit" value="Login" style="border : 1px solid #C7D1D4;">
在其他浏览器中,这与IE8一起使用,但对于IE7,它会添加额外的黑色边框。可以解决这个问题还是浏览器的默认活动?
答案 0 :(得分:0)
试试这个:
<!--[if IE]>
<style type="text/css">
input {
filter:chroma(color=#000000);
border : 1px solid #C7D1D4;
}
</style>
<![endif]-->