Thursday, 17 November 2016

How to color fill a unicode (star: u2605) character only half way in css/html?

How to take something like a star unicode \u2605 which is a star in html/css and only fill it half way instead of full.



Here is code:




\u2605




My styles look like this thus far:



.starHalfFill {
color: orange;
}

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...