Skip to content

Instantly share code, notes, and snippets.

@sake92
Created December 24, 2019 13:19
Show Gist options
  • Save sake92/c969b09fcb7e40a52b2005a86334dbc4 to your computer and use it in GitHub Desktop.
Save sake92/c969b09fcb7e40a52b2005a86334dbc4 to your computer and use it in GitHub Desktop.
Resize textarea on hover
<!DOCTYPE html>
<html>
<style>
textarea {
resize: none;
overflow: hidden;
}
textarea:focus, textarea:hover {
height: 5em;
overflow-x: hidden;
overflow-y: auto;
}
</style>
<body>
<textarea rows="1">
At w3schools.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea>
<script>
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment