移除button在IE67下的黑边

在IE6-7中,当button标签的type=submit,或input标签的type=submit会出现黑边,并且在ios下也存在相同的问题。

IE下要使用滤镜来处理:

<!--[if IE]>
<style type="text/css">
  input {
    filter:chroma(color=#000000);
    border:none;
  }
</style>
<![endif]-->

或者

input[type=submit],
input[type=reset],
input[type=button]{
  filter:chroma(color=#000000);
}


你可能感兴趣的:(移除button在IE67下的黑边)