Skip to content

Instantly share code, notes, and snippets.

@katapad
Last active December 21, 2015 12:28
Show Gist options
  • Save katapad/6305649 to your computer and use it in GitHub Desktop.
Save katapad/6305649 to your computer and use it in GitHub Desktop.
user-select: none のやつ。notを使うとiOSでうまくいかないので、個別にやる
//↓うまくいかない
//*:not(input,textarea)
// +user-select(none)
*
+user-select(none)
input, textarea
+user-select(auto !important)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment