how do you increase the height of an html textbox

后端 未结 8 1073
野性不改
野性不改 2020-12-24 04:53

How do you increase the height of an textbox? (along with its font size)

8条回答
  •  爱一瞬间的悲伤
    2020-12-24 05:35

    Increasing the font size on a text box will usually expand its size automatically.

    
    

    If you want to set a height that is not proportional to the font size, I would recommend using something like the following. This prevents browsers like IE from rendering the text inside at the top rather than vertically centered.

    .form-text{
        padding:15px 0;
    }
    

提交回复
热议问题