37
loading...
This website collects cookies to deliver better user experience
hide-visually
this is a class that allows screen readers to read the contents but hides it from sight so a someone not using a screen reader won't see it.<input name="rating" value="1" type="radio" id="rating1">
<label for="rating1">
<span class="hide-visually">1 Star</span>
<span aria-hidden="true" class="star">★</span>
</label>
::before
pseudo class..star-rating>label {
-webkit-text-stroke: 2px black;
}
.star-rating input:checked~label>span.star,
.star-rating>label:hover~input~label>span.star{
color: #fff;
}
.star-rating span.star,
.star-rating:hover>input+label>span.star,
.star-rating>input:checked+label>span.star,
.star-rating>input~label:hover>span.star{
color: gold;
}
.star-rating>input~label:hover>span.star{
color: orange;
}