How to change Input cursor width and height
<input type="text" value="">
How to change Input cursor width and height
<input type="text" value="">
To change the width use with size
:
<input type="text" id="fname" name="fname" size="80">
And to change the height use with class in css :
<input type="text" class="height " name=" item" align="left" />
In the css :
.height {
height:30px;
}