Arial Monospace for SAP

  • Thread starter Thread starter gtreude
  • Start date Start date
G

gtreude

Why is the password character displayed in IE6 a box (and not a bullet)
when executing this code? When viewed in Mozilla, the character
displayed is an astericks. The password character I'd expect is a
large, bold bullet, which is the password mask character used in SAP. I
know the browser is in control of rendering the HTML. I am interested
in finding the logic used by the browser to determine which character
to display?

Thanks
Greg

<html>
<head>
<title>inputs.htm</title>
<style type="text/css">
..input1 { font-family: Arial Monospaced for SAP; font-size: 25pt }
..input2 { font-family: Arial Monospaced for SAP; font-size: 25pt;
background-color: yellow }
</style>
</head>
<body>
<form>
<input type="text" name="text1" size="10" maxlength="10"
class="input1">
<input type="password" name="text2" size="10" maxlength="10"
class="input2">
</form>
</body>
</html>
 
Back
Top