Stars
by shatul patil
HTML
<div class="stars"><span class="star on"></span><span class="star on"></span><span class="star on"></span><span class="star half"></span><span class="star"></span></div>
CSS
.star {
font-size: x-large;
width: 15px;
display: inline-block;
color: gray;
}
.star:last-child {
margin-right: 0;
}
.star:before {
content:'\2605';
}
.star.on {
color: gold;
}
.star.half:after {
content:'\2605';
color: gold;
position: absolute;
margin-left: -20px;
width: 10px;
overflow: hidden;
}