I added a Font Awesome 5 character as pseudo :before content to an <li> element. The icon renders correctly in Firefox (v74) but in Chrome (v80) it only looks like an outline square/missing character.
The same icon added as element renders correctly in both browsers.
Here's a fiddle: JS Fiddle
ul li {
list-style: none;
}
ul li:before {
margin-right: 10px;
font-family: 'Font Awesome 5 Pro Solid';
content: '\f0c8';
color: "#cc0000";
}
Is there a workaround to make the icon show in Chrome?