I have the followoing code as a basic example:
This should give each option its own font type, and it does for Firefox... but not for IE. Is there any way to make this work in IE?
Thanks in advance for any help/experience!
X
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html lang="en-US"><head><title>Select Test</title>
</head>
<body>
<select name="fonts">
<option style="font-family:Georgia;" value="Georgia">Georgia
<option style="font-family:Arial;" value="Arial">Arial
<option style="font-family:Impact;" value="Impact">Impact
<option style="font-family:Verdana;" value="Verdana">Verdana
<option style="font-family:Times New Roman;" value="Times New Roman">Times New Roman
<option style="font-family:Trebuchet;" value="Trebuchet">Trebuchet
<option style="font-family:Courier;" value="Courier">Courier
<option style="font-family:Helvetica;" value="Helvetica">Helvetica
<option style="font-family:Lucida Sans Unicode;" value="Lucida Sans Unicode">Lucida Sans Unicode
<option style="font-family:Lucida;" value="Lucida">Lucida
<option style="font-family:Sans-serif;" value="Sans-serif">Sans-serif
</select>
</body>
</html>
This should give each option its own font type, and it does for Firefox... but not for IE. Is there any way to make this work in IE?
Thanks in advance for any help/experience!
X