Chaning the CSS attribute for a specific class where the place of the accourance is not determined
Let's say you have series of classes for an element and you want to change the font color of the class fc-event-title to black a wherever the class 'u-warning' is used too.
[class*="u-warning"] .fc-event-title{
color: black;
}
Comments
Post a Comment