I found it in code and don\'t know what\'s the point of using *.class selector over .class selector.
*.class
.class
They are roughly equivalent - the asterisk only further specifies which objects of said class to apply the selection to.
.class // Selects all of the specific class *.class // Selects all of the specific class - where * can be a div, li, etc.