I want to display each country's flag in select options.
Here is my code i tried:
<select id="slcCountry">
<option flag="https://restcountries.eu/data/afg.svg">AFG</option>
<option flag="https://restcountries.eu/data/ala.svg">ALA</option>
<option flag="https://restcountries.eu/data/alb.svg">ALB</option>
</select>
Here is css to show the image
select option {
background-image: url(attr(flag));
background-repeat: no-repeat;
background-size: 30px;
background-position: 10px 6px;
width: 32px;
height: 34px;
}
How I can display each image (flag) of the list here. Help me please.