css 的一点记录

来源:互联网 发布:编程语言效率排行 编辑:程序博客网 时间:2024/06/05 14:50

1、元素不可选中

document{

-webkit-user-select: none;  /* Chrome / Safari */-moz-user-select: none;     /* Firefox */-ms-user-select: none;      /* IE 10+ */user-select: none;

}


2、元素点击不高亮

document{

-webkit-tap-highlight-color:rgba(0,0,0,0);

}


另外元素取消选中

window.getSelection().removeAllRanges();