[Solved] Which of the two following selectors are better? [closed]
ul a { font-size: 1.25rem } This is the best if you want to capture every anchor tag or any tag inside ul/ol tag But performance wise, ul { font-size: 1.25rem } this will be best. But if you want to modify the tag’s built in css property, like anchor’s color property, then you will … Read more