取消浏览器默认样式
Posted zzlove-1234
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了取消浏览器默认样式相关的知识,希望对你有一定的参考价值。
一.用js
XXX.onclick=(e)=>{
e.preventDefault();
}
二.用css(加兼容)
.prev{
-moz-user-select:none;/*火狐*/
-webkit-user-select:none;/*webkit浏览器*/
-ms-user-select:none;/*IE10*/
-khtml-user-select:none;/*早期浏览器*/
user-select:none;
}
以上是关于取消浏览器默认样式的主要内容,如果未能解决你的问题,请参考以下文章
取消chrome浏览器下input和textarea的默认样式
取消chrome浏览器下input和textarea的默认样式;html5默认input内容清除“×”按钮去除办法