The width property specifies the width of an element, and the height property specifies the height of an element.
The width and height of the form fields can be specified by applying these properties to the INPUT, TEXTAREA, and SELECT elements.
textarea {
width: 200px;
height: 10em;
}
Property |
Value |
Explanation |
width |
length, %, or auto |
the size of the width |
height |
length, %, or auto |
the size of the height |
The default is "auto".
Example