如何在选择列表中添加图像?我有一份性别选择列表。代码:<select><option>male</option><option>female</option><option>others</option></select>我想使用下拉列表中的图像作为下拉列表。我想添加一个按钮代替下拉图标。怎么做?
3 回答
MM们
TA贡献1886条经验 获得超2个赞
<select> <option style="background-image:url(male.png);">male</option> <option style="background-image:url(female.png);">female</option> <option style="background-image:url(others.png);">others</option></select>
HTML
<select id="gender"> <option>male</option> <option>female</option> <option>others</option></select>
CSS
select#gender option[value="male"] { background-image:url(male.png); }select#gender option[value="female"] { background-image:url(female.png); }select#gender option[value="others"] { background-image:url(others.png); }
肥皂起泡泡
TA贡献1829条经验 获得超6个赞
<select name='state' style='height: 45px; font-family:Arial, FontAwesome;'><option value=''> All States</option> <option value='enabled' style='color:green;'> Enabled</option><option value='paused' style='color:orange;'>  Paused</option><option value='archived' style='color:red;'> Archived</option></select>
注意 字体系列:Arial,FontAwome;需要按样式分配,以便选择,就像在示例中给出的一样!
- 3 回答
- 0 关注
- 717 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消