Re: text input form resize

At 11:29 28/02/2000 +1100, you wrote:
>Hi,
>
>Sorry for asking the following question if it is not appropriate to this
>list. Is it possible to resize the length of the text input display
>based on current window width? The size of the text input does not
>accept a function, the following initial statement only made one
>character length of the text input.
>
>.............
><script language = JavaScript>
>function getSize ()
>{
>     return Math.floor (innerWidth / 20);
>}
></script>
><form>
><input type = text size = "getSize ()">
>..............
>
>Thank you.
>
>yh

You can use CSS1 to control the width, e.g.

<input type="text" style="width: 50%;">

Received on Monday, 28 February 2000 03:37:46 UTC