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

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

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

2条回答
  •  时光取名叫无心
    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.

提交回复
热议问题