首页 > 代码库 > 取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法

取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法

取消chrome浏览器下input和textarea的默认样式:

outline:none;/*清空chrome中input的外边框*/

html5默认input内容清除“×”按钮去除办法:

input::-ms-clear {    display: none;}

 

取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法