I have an input field:
<input type="text" id="TextField" />
and set it to resize:
#TextField {
resize: horizontal;
}
But it does not resize.
How can I have a text field resize horizontally (not vertically) when the text nears the end (right) of the text field? Or, are there any built-in ways for this to work (maybe using something in CSS)?