How do I set the size of an HTML text box?

前端 未结 11 1805
广开言路
广开言路 2020-12-23 13:00

How do I set the size of an HTML text box?

11条回答
  •  不知归路
    2020-12-23 13:26

    Try:

    input[type="text"]{
    padding:10px 0;}
    

    This is way it remains independent of what textsize has been set for the textbox. You are increasing the height using padding instead

提交回复
热议问题