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

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

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

11条回答
  •  春和景丽
    2020-12-23 13:36

    Just use:

    textarea {
        width: 200px;
    }
    

    or

    input[type="text"] {
        width: 200px;
    }
    

    Depending on what you mean by 'textbox'.

提交回复
热议问题