When defining CSS for a particular element does specifying exact path make any difference when we are talking about speed/accuracy/processing of a web page?
for e.g. if I have text inputs ONLY in 3rd column of my table, which is better for speed, accuracy, processing and other parameters?
OPTION 1:
table input[type="text"]
{
background:yellow;
}
OPTION 2:
table td:nth-child(3) input[type="text"]
{
background:yellow;
}