Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Natao arisiva ity resaka mitohy ity. Mametraha fanontaniana azafady raha mila fanampiana.

the style and class attributes on optionn tag seem to be ignored in FF69 on Ubuntu Linux

  • 2 valiny
  • 1 manana an'ity olana ity
  • 82 views
  • Valiny farany nomen'i jamescobban
  • Natao arisiva

The following page honors the requested text color when viewed in Chrome but not in FF69 on Ubuntu Linux.

<style>
    .male      {color:              #000080; /* dark blue */
                }
    .female    {color:              #800000; /* dark red */
                }
    .unknown   {color:              #008000; /* dark green */
                }
</style>
<p>class attribute on &lt;option&gt; seems to be ignored by Firefox 69 on Ubuntu Linux</p>
    <select name="Gender" id="Gender" size="1"
		                class="female left">
		<option value="0"  class="male">
		    Male
		</option>
		<option value="2" selected="selected" class="female">
		    Female
		</option>
		<option value="2"  class="unknown">
		    Unknown
		</option>
	</select>

style attribute on <option> seems to be ignored by Firefox 69 on Ubuntu Linux

   <select name="Gender2" id="Gender2" size="1"

class="male left"> <option value="0" selected="selected" style="color: #000080;"> Male </option> <option value="1" style="color: #800000"> Female </option> <option value="2" style="color: #008000"> Unknown </option> </select>

The following page honors the requested text color when viewed in Chrome but not in FF69 on Ubuntu Linux. <pre><nowiki><style> .male {color: #000080; /* dark blue */ } .female {color: #800000; /* dark red */ } .unknown {color: #008000; /* dark green */ } </style> <p>class attribute on &lt;option&gt; seems to be ignored by Firefox 69 on Ubuntu Linux</p> <select name="Gender" id="Gender" size="1" class="female left"> <option value="0" class="male"> Male </option> <option value="2" selected="selected" class="female"> Female </option> <option value="2" class="unknown"> Unknown </option> </select></nowiki></pre> <p>style attribute on &lt;option&gt; seems to be ignored by Firefox 69 on Ubuntu Linux</p> <select name="Gender2" id="Gender2" size="1" class="male left"> <option value="0" selected="selected" style="color: #000080;"> Male </option> <option value="1" style="color: #800000"> Female </option> <option value="2" style="color: #008000"> Unknown </option> </select>

Novain'i cor-el t@

All Replies (2)

In Firefox it is not easy to style SELECT tags.

See Styling with CSS in the docs on MDN.

I have no problem styling the select. It Is the option tags for which FF is ignoring both class and style. I should not be forced to use JavaScript to make "male" display in blue, female in red, and unknown in green.