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>

Leave a comment

Your email address will not be published. Required fields are marked *