How to put background image in select option tag using css

后端 未结 2 957
旧时难觅i
旧时难觅i 2021-01-28 02:09

I have a country dropdown list receiving from json response, and want to add respective country flag icons (getting the images as well from json reponse) next to the country nam

2条回答
  •  借酒劲吻你
    2021-01-28 02:42

    You can't give an option tag a background-image.

    One solution will be to create your own "select" component.

    • option1
    • option2>
    • ..

    then you give some css to look like a select input.

    And some javascript to handle showing and hiding "li" elements

提交回复
热议问题