Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q871 Is it possible to set the font for certain elements in a drop down box?

You are here: irt.org | FAQ | JavaScript | Form | 1 | Q871 [ previous next ]

Only on all of the options:

<style>
.small {font-size: 8pt; color: #FF0000; font-family: Arial;}
</style>

<p class="small">
<form class="small">
<select>
<option>ABC123
<option>123ABC
</select>
</form>
</p>

Also see Is it possible to set the font in a textarea?

Feedback on 'Q871 Is it possible to set the font for certain elements in a drop down box?'

©2018 Martin Webb