I wondered if the "narrow" definition, for example
#mytable tbody span.myclass
{
color: #ffffff;
}
code>
better / faster to understand than just
.myclass
{
color: #ffffff;
}
code>
I read somewhere that narrow definitions supposedly really have some effect on CSS speed, but I can’t remember where and for what time it was already, so I just wanted to clarify whether it matters or not, and if it happens which solution is better / faster.
Thank!
source
share