Examining the code snippet below:
<ul>
<li>
<a ...
Between these two stylesheets which would be more efficient with the same declarations? if any performance gains were to be observed.
ul {
font-size: 1.25rem
}
ul a {
font-size: 1.25rem
}
Would the first one have an edge in terms of performance?