+ 1
How to resize input element?
Im using width and height attributes can't resize input box
3 odpowiedzi
+ 1
To resize elements avoid using height and width. CSS can resize those for you.
Here is an example of inline CSS.
<input type="text" style="height: 20px; width: 80px;" />
you can use
em, % , vh, vw, pt instead of 'px' as a unit
+ 1
select an id for your input . and with css style change you width n height
0
pauk jabira is right bruv