How do I fix inconsistent Textarea bottom margin in Firefox and Chrome?
By default, I believe both Chrome and Firefox will set these elements as display: inline-block;
. Set display: block
in your styles and you should be all set.
If you want to leave it inline, simply try
vertical-align: top
Set display: block
for your textarea.