css设置以某个字符开头或包含某个字符的类名样式
[class^='icon'], [class*=' icon'] { width: 100px; height: 100px; background-color: red; }
以icon开头,包含 ' icon'的类名
[class^='icon'], [class*=' icon'] { width: 100px; height: 100px; background-color: red; }
以icon开头,包含 ' icon'的类名