Wie man Textbox in HTML kürzer macht

just use

textarea {
    width: 200px;
}

or 

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