Hello,
I’m just starting to learn CSS and have come across some selectors that I can’t quite interpret (in CSS written by a more experienced predecessor):
#itemid * table
#itemid * table * th, #itemid * table * td
Are the universal selectors functioning as wildcards for the ancestors of the various table elements here? And if so, why is a universal selector needed between table and th and table and td, respectively?
And more importantly: how do I override this individual instances? Can I do so using a class created for the table element?
Thanks in advance!