![]() |
|
|
+ Search |
![]()
|
Apr 25th, 2000 15:15
Martin Honnen,
NN6 and IE4+ can apply css to text fields to get a bold text:
<FORM NAME="formName">
<INPUT TYPE="text" NAME="aField" VALUE="Kibology">
<INPUT TYPE="checkbox" NAME="bold"
ONCLICK="if (this.checked)
this.form.aField.style.fontWeight = 'bold';
else
this.form.aField.style.fontWeight = 'normal';"
>
</FORM>