if focusing input tag, hide placeholder
//Placeholder 속성을 수정함 | |
input:focus::-webkit-input-placeholder, | |
textarea:focus::-webkit-input-placeholder { /* WebKit browsers */ | |
color:transparent; | |
} | |
input:focus:-ms-input-placeholder, | |
textarea:focus:-ms-input-placeholder { /* Internet Explorer 10+ */ | |
color:transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment