I am sorry if my question is not overly clear.
I will first illustrate my question with an exmaple:
<div id="parent">
/*This contains a dynamically generated amount of children from 1 - 200*/
<div class="child"></div>
</div>
Is it best practice/faster to style each child using .child {} or using #parent div {}
If there are 200 children then that is a lot of additional text.
Thank you
