Created
June 25, 2013 07:27
-
-
Save Xordal/5856628 to your computer and use it in GitHub Desktop.
Default undeletable text in textarea.
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
<div class="textarea-container" onclick="document.getElementById('myTextarea').focus()"> | |
<div>I like/dislike this site because:</div> | |
<textarea id="myTextarea"></textarea> | |
</div> |
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
div.textarea-container { | |
border: solid 1px #808080; | |
overflow: auto; | |
width: 480px; | |
padding: 2px; | |
font-family: Arial; | |
font-size: 12px; | |
} | |
div.textarea-container textarea { | |
font-family: Arial; | |
font-size: 12px; | |
overflow: auto; | |
border: none; | |
outline: none; | |
width: 480px; | |
height: 120px; | |
margin: 0px; | |
padding: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment