search

Home  >  Q&A  >  body text

Can't highlight words on this webpage in Edge or Firefox

<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粉765684602P粉765684602537 days ago507

reply all(1)I'll reply

  • P粉345302753

    P粉3453027532023-08-16 09:31:48

    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>

    reply
    0
  • Cancelreply