css 隐藏滚动条 ios中长按不选中页面内容兼容input可以正常输入

1 隐藏掉滚动条

.diTuPage::-webkit-scrollbar { width: 0 !important }
.diTuPage { -ms-overflow-style: none; }
.diTuPage { overflow: -moz-scrollbars-none; }

2 ios中长按不选中页面内容

*{
  -webkit-touch-callout:none;  /*系统默认菜单被禁用*/
  -webkit-user-select:none; /*webkit浏览器*/
  -khtml-user-select:none; /*早期浏览器*/
  -moz-user-select:none;/*火狐*/
  -ms-user-select:none; /*IE10*/
  user-select:none;
}
input {
  -webkit-user-select:auto; /*webkit浏览器*/
}

如果你觉得我帮到你了,买个肥宅快乐水,怎么样?哈哈哈哈哈哈

你可能感兴趣的:(js,css)