1
I’m doing a rating system on my website. I have a select option
with a 1 to 5 vote I’m trying to turn that select option
with icons to take the vote but I’m not getting it I’d like to know if it’s possible and how I can do it.
Code Used so far
select#teste option[value="1"] { background-image:url(../rating/img/rating_no.png); }
select#teste option[value="2"] { background-image:url(../rating/img/rating_no.png); }
select#teste option[value="3"] { background-image:url(../rating/img/rating_no.png); }
select#teste option[value="4"] { background-image:url(../rating/img/rating_no.png); }
select#teste option[value="5"] { background-image:url(../rating/img/rating_no.png); }
HTML
<select name="teste" id="teste">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
The idea is to stay that way