取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法
Posted tags: 篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法相关的知识,希望对你有一定的参考价值。 取消chrome浏览器下input和textarea的默认样式: html5默认input内容清除“×”按钮去除办法: 以上是关于取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法的主要内容,如果未能解决你的问题,请参考以下文章 取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法 解决chrome浏览器对于自动填充的input表单添加的默认的淡黄色背景问题
outline:none;/*清空chrome中input的外边框*/
input::-ms-clear {
display: none;
}