how to make text not highlightable CSS
Code
1 2 3 4 | -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+/Edge */ user-select: none; /* Standard */ |
how to make text not highlightable CSS
Code
1 2 3 4 | -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+/Edge */ user-select: none; /* Standard */ |
0 comments:
Post a Comment