Middle (vertically) align text inside a <textarea>

前端 未结 4 1326
不知归路
不知归路 2021-01-07 19:31

It\'s a multiline search-box, so i want everything aligned in the middle. Is it possible?

4条回答
  •  孤城傲影
    2021-01-07 20:02

    You can fake it with vertical padding.

    textarea {
        padding: 30px 0;
    }
    

    Generally you could use the line-height property, but you can not with more than one line of text.

提交回复
热议问题