Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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

  • 2 antwoorden
  • 1 heeft dit probleem
  • 6 weergaven
  • Laatste antwoord van jamescobban

more options

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>

Bewerkt door cor-el op

Alle antwoorden (2)

more options

In Firefox it is not easy to style SELECT tags.

See Styling with CSS in the docs on MDN.

more options

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.