I have a select box as below:
However, I want to change the design to this:
Anyone know a technique to do this in css? Or is it even possible? Thank you in advance.
I have a select box as below:
However, I want to change the design to this:
Anyone know a technique to do this in css? Or is it even possible? Thank you in advance.
HTML:
<select id="my_selection">
</select>
CSS:
#my_selection {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; /* remove default arrow */
background-image: url(../img/drop-down.png); /* add custom arrow */
background-repeat: no-repeat;
background-position:right center;
}
Use the following code to accomplish what you want.