Using chosen.js, how would I add images to the dropdown items?

前端 未结 2 2096
無奈伤痛
無奈伤痛 2021-02-09 09:25

Using chosen.js, how would I add images to the dropdown items?

相关标签:
2条回答
  • 2021-02-09 10:12

    To complete Joseph (I can't add comment to his answer), the class has changed since an unknown version: Here's the correct css in v1.0.0:

    li.active-result {
        background: url('path/to/img.png') no-repeat 3px center;
        text-indent:2em;
    }
    

    Thx Joseph!

    0 讨论(0)
  • 2021-02-09 10:14

    By setting a background-image on chosen's list items:

    .chzn-results li {
        background: url('path/to/img.png') no-repeat 3px center;
        padding-left: 12px;
    }
    

    Adjust the pixel count accordingly.

    0 讨论(0)
提交回复
热议问题