重新设计选择我想要的设计

时间:2017-07-30 16:21:58

标签: html css css3 drop-down-menu

我有一个选择框如下:

enter image description here

但是,我想将设计更改为:

enter image description here

任何人都知道在css中执行此操作的技巧吗?或者甚至可能吗? 提前谢谢。

1 个答案:

答案 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;
}

使用以下代码完成您想要的任务。