How to disable selection of text on a web page

后端 未结 6 1173
死守一世寂寞
死守一世寂寞 2020-12-08 06:52

I am trying to make webpage very native. How to remove select,select all property in webpage?

6条回答
  •  再見小時候
    2020-12-08 07:16

    use this code https://www.docsity.com/it/teorie-e-pratiche-del-web-4/556038/

    body, html{     
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;  
    }
    

提交回复
热议问题