universal.css
universal.css copied to clipboard
๐ก Icons support?
Example:
.universal-๐::before {
display: inline;
content: '๐';
}
<i class="universal-๐"></i> would show ยซ๐ยป. Isn't that great? And users could restyle that with any images they want (e.g. ยซ๐ยป)! Finally, universal portable icons for everyone.
Bonus: no more unobvious names, you won't have to remember those anymore.
Why not directly :
๐ป::before {
display: inline-block;
content: '๐ป';
}
@Shnoulle That would be perfect.