Created
June 21, 2012 22:13
-
-
Save veganstraightedge/2968906 to your computer and use it in GitHub Desktop.
expand comment box and show submit button on textarea focus
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
textarea { | |
height: 1.2em; | |
} | |
textarea:focus { | |
height: 4em; | |
} | |
.btn { | |
display: none; | |
} | |
textarea:focus + .btn { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, really did help me for my project.