Skip to content

Instantly share code, notes, and snippets.

@veganstraightedge
Created June 21, 2012 22:13
Show Gist options
  • Select an option

  • Save veganstraightedge/2968906 to your computer and use it in GitHub Desktop.

Select an option

Save veganstraightedge/2968906 to your computer and use it in GitHub Desktop.
expand comment box and show submit button on textarea focus
textarea {
height: 1.2em;
}
textarea:focus {
height: 4em;
}
.btn {
display: none;
}
textarea:focus + .btn {
display: block;
}
@lesander

Copy link
Copy Markdown

Thanks, really did help me for my project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment