HTML"选择"带有固定图标

时间:2015-12-04 01:29:51

标签: html css drop-down-menu html-select

我有一个选择选择一个月。在下拉列表中,我只想显示月份的名称(例如,1月,2月)。但是在select(显示所选值)的框中,我想显示一个FontAwesome图标(日历),然后显示所选月份的名称。

我希望关闭下拉列表的选项看起来像

enter image description here

我知道了,但我的下拉列表就是那样

enter image description here

我想要它(没有日历图标)

enter image description here

我的代码:

<select>
    <option value="all">&#xf133; All</option>
    <option value="m01">&#xf133; January</option>
    <option value="m02">&#xf133; February</option>
</select>

我该怎么做?

1 个答案:

答案 0 :(得分:1)

检查一下。

http://jsfiddle.net/afshinprofe/qhCsJ/1/

这正是你需要做的。将你的选择包装在一个容器中,然后给出一个带填充的背景图像,不再像文本输入那样重复。

<div class="selectParent">
     <select>
          <option value="1">Option 1</option>
          <option value="2">Option 2</option>           
     </select>  
 </div>

然后css将是

.selectParent{
    width:80px;
    overflow:hidden;


}

.selectParent select{
    width:100px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 2px 2px 2px 20px;
    border: none;
     background: transparent url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png") no-repeat left center;

}