views:

157

answers:

2

Is is possible to use the password element in html input type="password" in a mode whereby one dosn't show the characters types as asterixes/circles but as spaces/nothing so noone would know the length of the password.

+3  A: 

Could you make the text color the same as the background? (Haven't tried it myself....)

Michael Todd
A: 

In theory:

some-selector {
  background-color: white;
  color: white;
}

The selector could be input[type=password] if you don't care about browsers that don't support attribute selectors (i.e. older versions of IE)

David Dorward