Is it possible to position a div/text in the top right corner of a textarea using HTML and CSS?
HTML
<div id="textarea-container">
<textarea></textarea>
<div id="copy">copy</div>
</div>
CSS
div#textarea-container {
position: absolute;
}
div#copy {
position: relative;
right: 0;
}
Are there any adjustments that need to be made to achieve this layout?
jsFiddle: http://jsfiddle.net/zrpgK/