There`s some extra space under textarea tag. From 1 to 4 pixels in different browsers. The markup is very simple:
Add vertical-align: top to textarea.
vertical-align: top
textarea
The reason for the gap is that textarea is an inline (or inline-block) element, and the gap is the space reserved for descenders in text. I don't know exactly why the gap is different between different browsers.
inline
inline-block