I am facing an issue with a select tag and its options. I have used CSS to hide all the options except for the last one which is set to display block. However, the last option is not showing up. Could this be due to the large number of options present?
<select>
<option>example1</option>
<option>example2</option>
<option>example3</option>
</select>
Update
After reducing the number of options, the select tag works fine. Here is an updated example