6 ms·
I would disable the text selection like this: body{ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -m
by FWeinb 14y ago
I would disable the text selection like this:
body{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Great project. Looks Awesome.
- morphanite 14y agoThanks a ton for the tip! I ran into the text selection thing a bunch too and tried to fix it a couple ways that didn't work (z-index, etc) but your snippet works perfectly. Glad you like it.