Skip to content

Instantly share code, notes, and snippets.

@tastywheat
Last active December 28, 2015 06:09
Show Gist options
  • Save tastywheat/7455346 to your computer and use it in GitHub Desktop.
Save tastywheat/7455346 to your computer and use it in GitHub Desktop.
css star rating
<style>
.rating {
unicode-bidi: bidi-override;
direction: rtl;
}
.rating > span {
display: inline-block;
position: relative;
width: 1.1em;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
content: "\2605";
position: absolute;
}
</style>
<html>
<div class="rating">
<span>☆</span><span>☆</span><span>☆</span><span>☆</span><span>☆</span>
</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment