How do i change the width of textbox ? size='' and inline style doesnt seem to work
If you mean textarea and if you mean in HTML take rows and cols.
Take a look here http://www.w3.org/TR/html401/interact/forms.html#h-17.7
For <input type="text" .../> the size attribute should work e.g.
<input type="text" .../>
size
<input type="text" size="10" name="foo" />
What devices do you find it is not working on? Is it working for some but not others?
Am I being too obvious in asking whether there are any CSS width styles applied to the textbox/textarea?
rows="10" cols="5" properties
should work...
Sign in or register to reply.
Why register?
Developer's guide
Posted by callipo 2 years ago
If you mean textarea and if you mean in HTML take rows and cols.
Take a look here http://www.w3.org/TR/html401/interact/forms.html#h-17.7
Posted by ruadhan 2 years ago
Mobile Champion
For
<input type="text" .../>thesizeattribute should work e.g.<input type="text" size="10" name="foo" />What devices do you find it is not working on? Is it working for some but not others?
Ruadhan O'DonoghuedotMobi
Posted by garbetjie 2 years ago
Am I being too obvious in asking whether there are any CSS width styles applied to the textbox/textarea?
Posted by Tal_ph 2 years ago
rows="10" cols="5" properties
should work...