Last active
August 29, 2015 14:16
-
-
Save TigorC/f1b5d215632a8c2c2ba3 to your computer and use it in GitHub Desktop.
CSS tricks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*placeholder ellipsis*/ | |
input[placeholder] {text-overflow:ellipsis;} | |
input::-moz-placeholder {text-overflow:ellipsis;} | |
input:-moz-placeholder {text-overflow:ellipsis;} | |
input:-ms-input-placeholder {text-overflow:ellipsis;} | |
/*Hide placeholder in focus*/ | |
:focus::-webkit-input-placeholder {color: transparent} | |
:focus::-moz-placeholder {color: transparent} | |
:focus:-moz-placeholder {color: transparent} | |
:focus:-ms-input-placeholder {color: transparent} | |
/*Disable select for label*/ | |
label { | |
cursor: pointer; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
-o-user-select: none; | |
user-select: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment