Whenever I have a wrapper for a textarea, the textarea's height does not match the textarea's height. There's a few pixels of margin at the bottom. Why does this happen and how do I fix it?
E.g.:
<div>
<textarea></textarea>
</div>
The div will be a few pixels taller than the textarea.
Here's a fiddle: http://jsfiddle.net/0dgjqp3b/
I don't want to explicitly set the height of the parent. The parent should wrap around the textarea even if the textarea resizes.