移除 IE10 input 输入框上的清除按钮

Posted by 任平生 on January 9, 2013

ie input clear

IE10 除了默认交互控件的 UI 丑之外,还给 input 加了一个清除按钮,虽然看起来很有用的样子,实际情况中却有很多设计容不下它,所以我们前端就要隐藏掉这个东西,方法:

input[type=text]::-ms-clear {  
	display: none;  
}

资料:
http://msdn.microsoft.com/en-us/library/windows/apps/hh465740.aspx