2
It is possible to somehow use CSS rules applied to #elemento > .filho in another element #dots?
#elemento > .filho{...}
In case I would need <div id="dots"></div> received the style of the class filho.
What I have is dots out of the inheritance, and wanted to apply to him the style filho.
<div id="elemento">
<div class="filho"></div>
</div>
<div id="dots"></div>
You can’t just do:
#elemento > .filho, #dots {...}?– Leon Freire