设置一半星星的颜色

Pep*_*Pep 5 css emotion reactjs styled-components

如何只为一半的星星设置颜色?喜欢下图吗?

\n

在此输入图像描述

\n
    <span className={"star"}>\n     \xe2\x98\x85\n    </span>\n
Run Code Online (Sandbox Code Playgroud)\n

小智 0

body {\n  font-size: 60px;\n}\n\n\n.half {\n  display: inline-flex;\n}\n\n  .half > div:first-child {\n  overflow: hidden;\n  width: 27px;\n  z-index: 1;\n  color: #f97d00;\n}   \n  .half > div:last-child {\n  position: relative;\n  margin-left:-27px;\n}\n <span class='half'><div>\xe2\x98\x85</div><div>\xe2\x98\x85</div>\n
Run Code Online (Sandbox Code Playgroud)\n