I am trying to do a stuff related to CSS3 Attribute Selectors with less css...
What i am trying to do is, i have this following class which is in use in my code:-
*[class^="ui-icon-"] {
/*My Styles*/
}
That should be implemented in a manner that the styles of it will be implemented to another class that is defined after that, let say:-
/*Less*/
.another-class {
*[class^="ui-icon-"];
}
/*Output CSS*/
.another-class {
/*My Styles*/
}
Here, this is currently showing error on my webpage, does this have any solution?