IE7当<input type =“submit”/>底部有黑色边框时,如何删除?

时间:2015-03-13 10:56:28

标签: css internet-explorer input

的CSS:

width:80px;
height:65px;
background: #0fe;
border:none;
outline:none;
border-bottom:3px solid #f0f;

1 个答案:

答案 0 :(得分:0)

使用过滤器:

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

来源:http://www.cssjunction.com/css/remove-black-border-around-input-buttons-in-ie-7/