Textarea

Proposal to allow the height of a textarea to change depending on the content, so all of its content is shown without scroll bars (more details).

Simple textarea

Current solution (jQuery)

Proposed solution

<style>
  textarea {
    min-height: 5em; /* Backwards compatibility */
    height: max-content;
  }
</style>