Back
Input
1<div class="rating"> 2 <input type="radio" id="star5" name="rating" value="5" /> 3 <label for="star5"></label> 4 <input type="radio" id="star4" name="rating" value="4" /> 5 <label for="star4"></label> 6 <input type="radio" id="star3" name="rating" value="3" /> 7 <label for="star3"></label> 8 <input type="radio" id="star2" name="rating" value="2" /> 9 <label for="star2"></label>10 <input type="radio" id="star1" name="rating" value="1" />11 <label for="star1"></label>12</div>
1.rating { 2 display: inline-block; 3} 4 5.rating input { 6 display: none; 7} 8 9.rating label {10 float: right;11 cursor: pointer;12 transition: color 0.3s;13}14 15.rating label:before {16 content: "\2605";17 font-size: 30px;18}19 20.rating input:checked ~ label,21.rating label:hover,22.rating label:hover ~ label {23 color: #ffd700;24 transition: color 0.3s;25}
MIT License