Created
June 14, 2014 20:15
-
-
Save AverageMarcus/454a1b235029e57d8a7a to your computer and use it in GitHub Desktop.
Style textareas to look like paragraphs of text to provide inline editing of content.
This file contains 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, textarea:focus { | |
width:100%; | |
height:100%; | |
margin: 0; | |
border:0; | |
border-color:transparent; | |
outline:none; | |
overflow-y:auto; | |
resize:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment