Text box and password different size

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yaraedwards
    New Member
    • Aug 2007
    • 5

    Text box and password different size

    Hi everybody

    I have several text box and password boxes inside my html page:

    [HTML]
    <TR><TD>User ID:</TD> <TD><input type="text" name="userid" value="" size="20" /> </TD> </TR>

    <TR> <TD>Password: </TD><TD> <input type="password" name="userpass" value="" size="20" /></TD></TR>[/HTML]

    But when I display them in IE , they show as having different sizes (password field smaller in length)


    Could you please help me solve this problem?

    Many Thanks
    Yara
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Try setting the width through style=

    ie:

    [code=html]
    <input type="text" style="width: 40px;" /><br />
    <input type="password" style="width: 40px;" /><br />
    [/code]

    Comment

    • drhowarddrfine
      Recognized Expert Expert
      • Sep 2006
      • 7434

      #3
      I don't see the problem.

      Comment

      • yaraedwards
        New Member
        • Aug 2007
        • 5

        #4
        Originally posted by markusn00b
        Try setting the width through style=

        ie:

        [code=html]
        <input type="text" style="width: 40px;" /><br />
        <input type="password" style="width: 40px;" /><br />
        [/code]

        THANK YOU SOOOOO MUCH !

        Comment

        • yaraedwards
          New Member
          • Aug 2007
          • 5

          #5
          Originally posted by drhowarddrfine
          I don't see the problem.
          The problem was that I did not know how to make them appear as having the same size (Password field was displayed as smaller field and Text as longer field)

          Regards
          Yara

          Comment

          • Markus
            Recognized Expert Expert
            • Jun 2007
            • 6092

            #6
            Originally posted by yaraedwards
            THANK YOU SOOOOO MUCH !
            aha, very welcome.

            markus.

            Comment

            Working...