html / css how to Middle (vertically) align text inside a <textarea>

css, html

Solution

You could use the `contenteditable="true"` attribute on a `<div>` and then skin it with CSS.

Here is a link for cross browser compatibility: Reliable cross-browser info on ContentEditable

Problem

I want to centre the text inside a text area; I am trying with the line height, but it doesn't work.

Original source

Related problems