I'm trying following CSS, it works in Firefox and Chrome but does not work in the Safari (5.1). I have checked Safari supports nth-child. 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>