My CSS code is functioning properly in Firefox and Chrome but not in Safari (5.1). Even though I have confirmed that Safari supports nth-child, it still does not work. Can someone please help me identify what I'm doing wrong?
CSS:
option:nth-child(2){
display: none;
}
HTML:
<select>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>