Using the below style, my input boxes which are designated as
required show up with the thin red border. How do I get any of the
other "styles" to work, i.e. thin dotted black, etc?
<STYLE>
input.required {border: thin solid red}
input[type="text"] {border: thin dotted black; padding: 1px 1px;
padding-left: 1px; padding-right: 1px}
input[type="text"].required {border: 1px dashed red}
input[type="text"]:focus {background-color: white; border: 1px solid
white}
</STYLE>