how to fix the size of password input field?

10,831

Solution 1

Try using style="width:200px" for example rather than specifying size that way.

<input type="text" id="uid" style="width:200px;">
<input type="password" id="pass" style="width:200px;">

Or you can create a class in the CSS like this:

.input{
  width:200px;
}

And use like this:

<input type="text" id="uid" class="input">
<input type="password" id="pass" class="input">

Solution 2

You can fix it with width: 150px; (with CSS).

In CSS file :

input {
  width: 150px;
}

Or in inline CSS : style="width: 150px;" .

Edit : Grilled :) .

Share:
10,831
nectar
Author by

nectar

Updated on June 05, 2022

Comments

  • nectar
    nectar almost 2 years

    my html code is

    <tr>
                    <td>User ID:</td>
                    <td><input type="text" id="uid" size="20"></td>
                </tr>
                <tr>
                    <td>Password:</td>
                    <td><input type="password" id="pass" size="20"></td>
                </tr>
                <tr>
    

    but the problem is, password textbox length is coming diffrent in IE, means uid size is 20 but pass size is around 17.