+ 1
How to disable selection of the text on a button?
3 odpowiedzi
+ 2
button{
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
-webkit-user-select => for Safari
-ms-user-select => IE 10 and IE 11
user-select => Standard Syntax
+ 1
umunyarwanda thanks! What language is that? CSS ?
0
Oleksandr Medyanskyi , Yes it's Pure CSS