Contenteditable Not Working In Safari But Works In Chrome


Answer :

Safari has the user-select CSS setting as none by default.
You can use:



[contenteditable] {
-webkit-user-select: text;
user-select: text;
}


To make it work.



Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy