Chapter #39. Pick a Sensible Size for Multiline Input Fields
Forms need to be as frictionless as possible, because they are a huge barrier and conversion is low, so make them as easy for the user to complete as possible.
Sometimes, we need to ask users for more than a simple one- or two-word answer (like a name) and a multiline input field (or "text area") is needed. AÂ common mistake on the web (and in some desktop apps) is to provide a text area that is way too big or way too small.
If the text area is way too big, and the user has to manipulate the viewport to see what they're typing, then you're wasting valuable screen space.
![](https://static.packt-cdn.com/products/9781788837361/graphics/B09472_39_01.jpg)
A text area that is way too big for the intended input
If the text area is way too small, then the user has to scroll around inside the field to see what they've written.
![](https://static.packt-cdn.com/products/9781788837361/graphics/B09472_39_02.jpg)
An impossibly small input field for lots of text
Think through the common responses in these fields and judge the size accordingly. This is a classic example of how a little UX thought before the UI design...