I'm trying to showcase the flag of each country in a dropdown menu. Here is the code I attempted:
<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>
Below is the CSS to display the images:
select option {
background-image: url(attr(flag));
background-repeat: no-repeat;
background-size: 30px;
background-position: 10px 6px;
width: 32px;
height: 34px;
}
I need assistance with displaying each flag image in the list provided above. Can anyone help me out?