I wondered whether or not a 'narrow' definition such as
#mytable tbody span.myclass
{
color: #ffffff;
}
is better/faster to parse than just
.myclass
{
color: #ffffff;
}
I read somewhere that narrow definitions supposedly actually have some kind of adversery effect on CSS speed, but I can't remember where and it's been a while already so I just wanted to clarify if it matters or not, and if it does, which solution is better/faster.
Thank you!