Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why IE8 password field display nothing when we type through keyboard?

In windows XP mode IE8 browser when user type password only the curser moves the bullets is not showing up.Any body crossed across this situation.I want my user to display what ever they type as bullets in the field

like image 394
reddykkr Avatar asked Feb 16 '12 17:02

reddykkr


1 Answers

Perhaps you are using Google Web Fonts, or something else other than standard fonts?

Try putting this in your page's <head> tag:

<!--[if lte IE 8]>
<style>
  input {
    font-family: Arial;
  }
</style>
<![endif]-->

Make sure to replace input with whatever CSS selector it takes to override the font-family.

like image 95
cmc Avatar answered Nov 07 '22 22:11

cmc