How can I remove the all the borders of the selectbox
using css
or Jquery
?
My code,
<select id="doctor_ch">
<option value="1" selected>One</option>
<option value="2">Two</option>
</select>
CSS
#doctor_ch{
background-color: #88AFF2;
color:#fff;
margin-top: 15px;
}
When I use this code it only changes the arrow style. I want to remove the arrow background too.How can I remove it ?
Current result,
Expected result,
How can I do this ?