CSS3不能选中元素怎么设置?

CSS3不能选中元素怎么设置?
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* MSIE / Edge */
user-select: none; /* not supported by some browser */
}

其中的“.noselect”可以改成你想要的任何CSS选择器。

全文完。


4