Someone opens your church website late at night with something on their heart. They start typing a prayer request. Around sentence three, a scrollbar appears inside the textarea. The rest of what they wanted to say happens in a cramped window they can barely re-read. Most of the time, they cut it short.
That small friction is not a design accident — it is the default. Browsers have shipped a fixed-height textarea since the mid-1990s. For twenty-plus years, "make it grow with the words" required a small pile of JavaScript that most church sites never bothered to add.
That changed quietly this year. Every major browser now ships field-sizing: content — a single CSS property that tells the textarea to grow, and shrink, to fit whatever the person has typed. No JavaScript, no library, no listeners to wire up.
textarea, input[type="text"] {
field-sizing: content;
min-height: 6em;
max-height: 24em;
}
That is the whole change. Set a generous minimum so the box looks welcoming when empty, and a maximum so a long story does not push your submit button off the screen. Everything in between simply feels right — the field breathes with the words, and the person writing gets to see what they have written.
The impact is subtle and outsized. Prayer requests get longer. Contact form messages get more specific. Testimonial submissions read like people actually reflecting instead of stopping at "God has been good, thank you." When someone can see their own words as they write them, they tend to write more truthfully.
It works on single-line inputs too, so a "one-word update" field can quietly stretch when a name or a note runs long. It respects your min and max limits gracefully. And for the small share of visitors on browsers that have not caught up, the form just behaves the way it always did — no fallback code to maintain.
If your church's prayer wall, contact page, or "how can we walk with you?" form still lives in a cramped little box, this is a two-line fix that quietly tells people the church actually wants to hear the whole story. If we can help audit your church's forms for small upgrades like this, we would love to hear from you.

