<select class="Select-input"> <option value="one">One</option> <option value="two">Two</option> <option value="three">Three</option> <option value="four">Four</option> </select>
I want to hide only the value four of the above code.
I tried using {display: none} for a value of four, but that didn't work.
You also need to add indents between these elements one, two, three and four.
PS I want to remove it only with CSS.
source share