css - how to make rating bar with font awesome icon? -


i want create rating bar font awesome icon. but, can't make icon fill part of (%) color.

like image (image updated) : example

this not elegant solution might few ideas.

see fiddle https://jsfiddle.net/fbr4b6fd/

<div class="container"><span class="fill"></span><i class="fa fa-meh-o"></i></div>  .container{     display: inline-block;     border-radius:50px;     background-color: #ffffff;     width: 81px;     height: 81px;     overflow: hidden;     position:relative; } .fill{     background-color: #ff0000;     height: 100%;     width: 75%;     position:absolute;     left:0;     top:0;  } .fa{     font-size:100px;     position:relative;     top: -10px;     left: -2px; } 

Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -