As in
*html .tblCol5 div.removeColumn{width:58px}
I’m getting an error on this in FF Error Console. I’ve found the solution CSS Star Selector. The correct syntax is * html (insert a space between ” * ” and html). Even though I didn’t post the question, I didn’t see one similar to it so thought it was worth posting for informational purposes (if that is allowed).
That’s because * is a selector itself, it means: ‘everything’, while *html has no meaning..