Skip to content

Instantly share code, notes, and snippets.

@Xordal
Created June 25, 2013 07:27
Show Gist options
  • Save Xordal/5856628 to your computer and use it in GitHub Desktop.
Save Xordal/5856628 to your computer and use it in GitHub Desktop.
Default undeletable text in textarea.
<div class="textarea-container" onclick="document.getElementById('myTextarea').focus()">
<div>I like/dislike this site because:</div>
<textarea id="myTextarea"></textarea>
</div>
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