I have a input field in html form
<input type="text" size="30">
I want to display only 30 char so i set the size as 30 .
But the behavior of the text field depends upon what char is entered as input some time it displays less char than 30 . some times it displays more than 30 .
for example :
if I enter 123456789012345678901234567890
it will display only 28 characters even though it has 30 characters
if I enter on only l as a character I can enter almost 50 chars
what can be the cause of this I am not able to understand do any one have a idea ? I want to know do each char takes different space to display in form ?