To directly address the option font color, we can set the color on the select element to the light grey, then set all the option font colors except the first to black. This way, the first option inherits the light grey, and shows as such while the select is both open and closed.
Tag: select box
How to update the values of custom radio buttons to the corresponding selection field in an online case form when a radio button is selected?
We can update the custom radio button value to corresponding the select field when we selecting the radio button by using the select field id.
How to convert case type Select tag to radio button in online case form using javascript.
We can convert ‘Case Type’ select tag to radio button in online case form by using javascript.
Drop down arrow in select boxes
By default there is a drop-down arrow present in Html <select> tag,but some times HTML select boxes do not show the drop down arrow.To resolve this issue we can use the below code in the SCSS file. select { -webkit-appearance: listbox !important; } Note:It will affect all the <select tags>