Drop-down arrows in the select fields are not showing
The following is a basic select element with its options. <select> <option>1</option> <option>2</option> <option>3</option> </select> Now let’s see where your issue is: select { /*webkit browsers */ -webkit-appearance: none; /*Firefox */ -moz-appearance: none; /* modern browsers */ appearance: none; border-radius: 0; } <select> <option>1</option> <option>2</option> <option>3</option> </select> When you set none to appearance you are … Read more