If I have a CSS defnition as;
.grid .data table tr.selected td [class^="icon-"], .grid .data table tr.selected td [class*=" icon-"] {
background-image: url("../img/css-sprites.png");
}
How would it work exactly? I mean if the condition is met (tr is having class as selected and it has a child td which has any child element having class containing name 'icon-')
My question is "to" which element would the background-image get applied to?