Can't highlight words on this webpage in Edge or Firefox
P粉765684602
P粉765684602 2023-08-15 12:32:04
0
1
446
<p>I have some knowledge of JavaScript, so hopefully I won't get lost in the suggested answers. I have a website and I'm trying to figure out why I can't highlight a word with left click and drag. The webpage doesn't allow me to do this. Can someone explain how web developers implement this? Thanks in advance. </p> <p>This is the web page: </p> <p>www.minimalismmadesimple.com</p>
P粉765684602
P粉765684602

reply all(1)
P粉345302753

This can be easily achieved by using CSS.

body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
<html>
  <body>
    <p>尝试选择我</p>
  </body>
</html>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!