答案 0 :(得分:0)
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;
}
使用以下代码完成您想要的任务。