使用 selected.js,如何将图像添加到下拉项?
问问题
4834 次
2 回答
7
通过background-image
在选择的列表项上设置 a:
.chzn-results li {
background: url('path/to/img.png') no-repeat 3px center;
padding-left: 12px;
}
相应地调整像素数。
于 2012-09-04T21:00:19.283 回答
2
为了完成 Joseph(我无法对他的回答添加评论),该课程自未知版本以来发生了变化:这是 v1.0.0 中正确的 css:
li.active-result {
background: url('path/to/img.png') no-repeat 3px center;
text-indent:2em;
}
谢谢约瑟夫!
于 2013-09-04T12:13:33.913 回答